This is an automated email from the git hooks/post-receive script.
git pushed a change to branch master in repository lldb.
from 78ca2edbc [CMake] Python bindings generation polishing new f84ed8fe8 [Scalar] Simplify comparison operators and add coverage. new 59a883204 [Driver] Some more cleanup. NFC new 97dbc925c Fix symbols.enable-external-lookup description wording new f7c24ace9 ProcessLaunchInfo: remove Debugger reference new 203f62a96 ObjectFileBreakpad: Implement sections
The 5 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/lldb/Target/ProcessLaunchInfo.h | 2 - include/lldb/Target/Target.h | 4 +- include/lldb/Utility/DataExtractor.h | 5 ++ .../Breakpad/Inputs/discontiguous-sections.syms | 5 ++ .../Breakpad/Inputs/sections-trailing-func.syms | 8 ++ lit/Modules/Breakpad/Inputs/sections.syms | 12 +++ lit/Modules/Breakpad/discontiguous-sections.test | 27 ++++++ lit/Modules/Breakpad/sections-trailing-func.test | 15 ++++ lit/Modules/Breakpad/sections.test | 89 ++++++++++++++++++++ source/Core/ModuleList.cpp | 8 +- .../ObjectFile/Breakpad/ObjectFileBreakpad.cpp | 79 +++++++++++++++++- source/Plugins/Platform/Linux/PlatformLinux.cpp | 4 +- source/Plugins/Platform/NetBSD/PlatformNetBSD.cpp | 4 +- .../Plugins/Platform/Windows/PlatformWindows.cpp | 5 +- .../gdb-server/PlatformRemoteGDBServer.cpp | 4 +- source/Target/ProcessLaunchInfo.cpp | 8 -- source/Target/Target.cpp | 5 +- source/Utility/Scalar.cpp | 95 +--------------------- tools/driver/Driver.cpp | 65 +++++++-------- tools/driver/Driver.h | 4 +- unittests/Utility/ScalarTest.cpp | 18 ++++ 21 files changed, 312 insertions(+), 154 deletions(-) create mode 100644 lit/Modules/Breakpad/Inputs/discontiguous-sections.syms create mode 100644 lit/Modules/Breakpad/Inputs/sections-trailing-func.syms create mode 100644 lit/Modules/Breakpad/Inputs/sections.syms create mode 100644 lit/Modules/Breakpad/discontiguous-sections.test create mode 100644 lit/Modules/Breakpad/sections-trailing-func.test create mode 100644 lit/Modules/Breakpad/sections.test