This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 8c519ef Fixed TestObjCStructArgument/i386; expressions can now call O [...] new ed2d094 Re-commit the changes from r282565 that I had to back out bec [...]
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: lldb.xcodeproj/project.pbxproj | 36 + source/Plugins/UnwindAssembly/x86/CMakeLists.txt | 1 + .../UnwindAssembly/x86/UnwindAssembly-x86.cpp | 1263 ++------------------ .../UnwindAssembly/x86/UnwindAssembly-x86.h | 7 +- ...bly-x86.cpp => x86AssemblyInspectionEngine.cpp} | 930 +++++--------- .../x86/x86AssemblyInspectionEngine.h | 178 +++ unittests/CMakeLists.txt | 1 + unittests/UnwindAssembly/CMakeLists.txt | 1 + unittests/UnwindAssembly/x86/CMakeLists.txt | 3 + .../x86/Testx86AssemblyInspectionEngine.cpp | 281 +++++ 10 files changed, 893 insertions(+), 1808 deletions(-) copy source/Plugins/UnwindAssembly/x86/{UnwindAssembly-x86.cpp => x86AssemblyInspe [...] create mode 100644 source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.h create mode 100644 unittests/UnwindAssembly/CMakeLists.txt create mode 100644 unittests/UnwindAssembly/x86/CMakeLists.txt create mode 100644 unittests/UnwindAssembly/x86/Testx86AssemblyInspectionEngine.cpp