diff options
Diffstat (limited to 'source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp')
| -rw-r--r-- | source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp b/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp index b1612a5f3c2f9..c4e468f89f35c 100644 --- a/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp +++ b/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp @@ -17,6 +17,9 @@  #include "lldb/Core/RegisterValue.h"  #include "lldb/Core/Scalar.h"  #include "lldb/Core/StreamString.h" +#ifndef LLDB_DISABLE_PYTHON +#include "lldb/Interpreter/PythonDataObjects.h" +#endif  #include "lldb/Target/ExecutionContext.h"  #include "lldb/Utility/Utils.h"  // Project includes @@ -54,7 +57,7 @@ GDBRemoteRegisterContext::GDBRemoteRegisterContext      // Make a heap based buffer that is big enough to store all registers      DataBufferSP reg_data_sp(new DataBufferHeap (reg_info.GetRegisterDataByteSize(), 0));      m_reg_data.SetData (reg_data_sp); - +    m_reg_data.SetByteOrder(thread.GetProcess()->GetByteOrder());  }  //---------------------------------------------------------------------- @@ -696,6 +699,7 @@ GDBRemoteRegisterContext::ConvertRegisterKindToRegisterNumber (uint32_t kind, ui      return m_reg_info.ConvertRegisterKindToRegisterNumber (kind, num);  } +  void  GDBRemoteDynamicRegisterInfo::HardcodeARMRegisters(bool from_scratch)  { | 
