diff options
Diffstat (limited to 'lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp b/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp index 0f3207b9cf3..077aa4df81a 100644 --- a/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp +++ b/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp @@ -40,20 +40,20 @@ RegisterContextLLDB::RegisterContextLLDB ) : RegisterContext (thread, frame_number), m_thread(thread), - m_next_frame(next_frame), - m_sym_ctx(sym_ctx), - m_all_registers_available(false), - m_registers(), - m_cfa (LLDB_INVALID_ADDRESS), + m_next_frame(next_frame), + m_fast_unwind_plan_sp (), + m_full_unwind_plan_sp (), + m_all_registers_available(false), + m_frame_type (-1), + m_cfa (LLDB_INVALID_ADDRESS), m_start_pc (), m_current_pc (), - m_frame_number (frame_number), - m_full_unwind_plan_sp (), - m_fast_unwind_plan_sp (), - m_frame_type (-1), m_current_offset (0), - m_current_offset_backed_up_one (0), - m_sym_ctx_valid (false) + m_current_offset_backed_up_one (0), + m_sym_ctx(sym_ctx), + m_sym_ctx_valid (false), + m_frame_number (frame_number), + m_registers() { m_sym_ctx.Clear(); m_sym_ctx_valid = false; |