[Lldb-commits] [lldb] r276485 - Remove some tab characters that snuck in to my mnost recent edits.

2016-07-22 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Fri Jul 22 17:26:26 2016 New Revision: 276485 URL: http://llvm.org/viewvc/llvm-project?rev=276485&view=rev Log: Remove some tab characters that snuck in to my mnost recent edits. Modified: lldb/trunk/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp l

Re: [Lldb-commits] [PATCH] D22219: Support loading files even when incorrect file name specified by the linker

2016-07-22 Thread Tamas Berghammer via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL276411: Support loading files even when incorrect file name specified by the linker (authored by tberghammer). Changed prior to commit: https://reviews.llvm.org/D22219?vs=63664&id=65064#toc Repository:

[Lldb-commits] [lldb] r276411 - Support loading files even when incorrect file name specified by the linker

2016-07-22 Thread Tamas Berghammer via lldb-commits
Author: tberghammer Date: Fri Jul 22 07:55:35 2016 New Revision: 276411 URL: http://llvm.org/viewvc/llvm-project?rev=276411&view=rev Log: Support loading files even when incorrect file name specified by the linker "Incorrect" file name seen on Android whene the main executable is called "app_proc

Re: [Lldb-commits] [PATCH] D22628: Fixing layout of elf-core file related structures

2016-07-22 Thread Pavel Labath via lldb-commits
labath accepted this revision. labath added a comment. This revision is now accepted and ready to land. Ok, nevermind then. Looks good. https://reviews.llvm.org/D22628 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/c

[Lldb-commits] [lldb] r276406 - Fixing layout of elf-core file related structures

2016-07-22 Thread Pavel Labath via lldb-commits
Author: labath Date: Fri Jul 22 07:18:45 2016 New Revision: 276406 URL: http://llvm.org/viewvc/llvm-project?rev=276406&view=rev Log: Fixing layout of elf-core file related structures Summary: The binary layout of prstatus and prpsinfo was wrong. Some of the member variables where not aligned prop

Re: [Lldb-commits] [PATCH] D22628: Fixing layout of elf-core file related structures

2016-07-22 Thread Dimitar Vlahovski via lldb-commits
dvlahovski added a comment. So, alignas doesn't work with typedef We can use a #define but that's kind of ugly https://reviews.llvm.org/D22628 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/l

[Lldb-commits] [lldb] r276403 - Fix a crash when an ELF section symbol have no name

2016-07-22 Thread Tamas Berghammer via lldb-commits
Author: tberghammer Date: Fri Jul 22 05:43:03 2016 New Revision: 276403 URL: http://llvm.org/viewvc/llvm-project?rev=276403&view=rev Log: Fix a crash when an ELF section symbol have no name Modified: lldb/trunk/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp Modified: lldb/trunk/source/Plugi

Re: [Lldb-commits] [PATCH] D22628: Fixing layout of elf-core file related structures

2016-07-22 Thread Pavel Labath via lldb-commits
labath added a comment. Looks good, just please fix the small stylistic issue. Comment at: source/Plugins/Process/elf-core/ThreadElfCore.h:24 @@ -23,3 +23,3 @@ { -int64_t tv_sec; -int32_t tv_usec; +alignas(8) uint64_t tv_sec; +alignas(8) uint64_t tv_usec; --