This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 0bec96a44 Move TestGdbRemoteExitCode next to the other llgs tests new e92fea794 [LLDB] Initial version of PPC64 InstEmulation
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: source/API/SystemInitializerFull.cpp | 3 + source/Plugins/Instruction/CMakeLists.txt | 1 + .../Instruction/{ARM64 => PPC64}/CMakeLists.txt | 4 +- .../Instruction/PPC64/EmulateInstructionPPC64.cpp | 406 +++++++++++++++++++++ .../Instruction/PPC64/EmulateInstructionPPC64.h | 97 +++++ tools/lldb-test/SystemInitializerTest.cpp | 3 + unittests/UnwindAssembly/ARM64/CMakeLists.txt | 13 + .../TestArm64InstEmulation.cpp | 0 unittests/UnwindAssembly/CMakeLists.txt | 10 +- .../UnwindAssembly/InstEmulation/CMakeLists.txt | 15 - unittests/UnwindAssembly/PPC64/CMakeLists.txt | 13 + .../PPC64/TestPPC64InstEmulation.cpp | 259 +++++++++++++ 12 files changed, 805 insertions(+), 19 deletions(-) copy source/Plugins/Instruction/{ARM64 => PPC64}/CMakeLists.txt (60%) create mode 100644 source/Plugins/Instruction/PPC64/EmulateInstructionPPC64.cpp create mode 100644 source/Plugins/Instruction/PPC64/EmulateInstructionPPC64.h create mode 100644 unittests/UnwindAssembly/ARM64/CMakeLists.txt rename unittests/UnwindAssembly/{InstEmulation => ARM64}/TestArm64InstEmulation.cp [...] delete mode 100644 unittests/UnwindAssembly/InstEmulation/CMakeLists.txt create mode 100644 unittests/UnwindAssembly/PPC64/CMakeLists.txt create mode 100644 unittests/UnwindAssembly/PPC64/TestPPC64InstEmulation.cpp