This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 924f3be99 Reimplement EventDataBytes::Dump to avoid DumpDataExtractor new 8ba903256 Move dumping code out of RegisterValue class
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: include/lldb/Core/DumpRegisterValue.h | 31 +++++++++ include/lldb/Core/RegisterValue.h | 6 -- source/Commands/CommandObjectRegister.cpp | 5 +- source/Core/CMakeLists.txt | 1 + source/Core/DumpRegisterValue.cpp | 79 ++++++++++++++++++++++ source/Core/EmulateInstruction.cpp | 3 +- source/Core/FormatEntity.cpp | 5 +- source/Core/RegisterValue.cpp | 62 ----------------- .../InstEmulation/UnwindAssemblyInstEmulation.cpp | 5 +- source/Target/ThreadPlanCallFunction.cpp | 4 +- source/Target/ThreadPlanTracer.cpp | 4 +- 11 files changed, 128 insertions(+), 77 deletions(-) create mode 100644 include/lldb/Core/DumpRegisterValue.h create mode 100644 source/Core/DumpRegisterValue.cpp