This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 102c0f4f8 [Reproducers] Fix reproducers unittest. new d3138a403 Breakpad: Extract parsing code into a separate file
The 1 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: .../ObjectFile/Breakpad/BreakpadRecords.cpp | 253 +++++++++++++++++++++ .../Plugins/ObjectFile/Breakpad/BreakpadRecords.h | 110 +++++++++ source/Plugins/ObjectFile/Breakpad/CMakeLists.txt | 1 + .../ObjectFile/Breakpad/ObjectFileBreakpad.cpp | 179 ++------------- .../ObjectFile/Breakpad/ObjectFileBreakpad.h | 1 - .../SymbolFile/Breakpad/SymbolFileBreakpad.cpp | 32 +-- .../ObjectFile/Breakpad/BreakpadRecordsTest.cpp | 64 ++++++ unittests/ObjectFile/Breakpad/CMakeLists.txt | 6 + unittests/ObjectFile/CMakeLists.txt | 1 + 9 files changed, 466 insertions(+), 181 deletions(-) create mode 100644 source/Plugins/ObjectFile/Breakpad/BreakpadRecords.cpp create mode 100644 source/Plugins/ObjectFile/Breakpad/BreakpadRecords.h create mode 100644 unittests/ObjectFile/Breakpad/BreakpadRecordsTest.cpp create mode 100644 unittests/ObjectFile/Breakpad/CMakeLists.txt