diff options
Diffstat (limited to 'lldb/source/Target')
-rw-r--r-- | lldb/source/Target/StackFrameList.cpp | 4 | ||||
-rw-r--r-- | lldb/source/Target/Target.cpp | 8 | ||||
-rw-r--r-- | lldb/source/Target/ThreadPlanTestCondition.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Target/ThreadPlanTracer.cpp | 4 |
4 files changed, 9 insertions, 9 deletions
diff --git a/lldb/source/Target/StackFrameList.cpp b/lldb/source/Target/StackFrameList.cpp index 6ad17994536..aef35a8d140 100644 --- a/lldb/source/Target/StackFrameList.cpp +++ b/lldb/source/Target/StackFrameList.cpp @@ -38,10 +38,10 @@ StackFrameList::StackFrameList ) : m_thread (thread), m_prev_frames_sp (prev_frames_sp), - m_show_inlined_frames (show_inline_frames), m_mutex (Mutex::eMutexTypeRecursive), m_frames (), - m_selected_frame_idx (0) + m_selected_frame_idx (0), + m_show_inlined_frames (show_inline_frames) { } diff --git a/lldb/source/Target/Target.cpp b/lldb/source/Target/Target.cpp index 05403f82eeb..2ade9e66142 100644 --- a/lldb/source/Target/Target.cpp +++ b/lldb/source/Target/Target.cpp @@ -1174,10 +1174,10 @@ Target::RunStopHooks () Target::StopHook::StopHook (lldb::TargetSP target_sp, lldb::user_id_t uid) : UserID (uid), m_target_sp (target_sp), - m_active (true), m_commands (), m_specifier_sp (), - m_thread_spec_ap(NULL) + m_thread_spec_ap(NULL), + m_active (true) { } @@ -1186,8 +1186,8 @@ Target::StopHook::StopHook (const StopHook &rhs) : m_target_sp (rhs.m_target_sp), m_commands (rhs.m_commands), m_specifier_sp (rhs.m_specifier_sp), - m_active (rhs.m_active), - m_thread_spec_ap (NULL) + m_thread_spec_ap (NULL), + m_active (rhs.m_active) { if (rhs.m_thread_spec_ap.get() != NULL) m_thread_spec_ap.reset (new ThreadSpec(*rhs.m_thread_spec_ap.get())); diff --git a/lldb/source/Target/ThreadPlanTestCondition.cpp b/lldb/source/Target/ThreadPlanTestCondition.cpp index b2c90db9577..9facfdcb95c 100644 --- a/lldb/source/Target/ThreadPlanTestCondition.cpp +++ b/lldb/source/Target/ThreadPlanTestCondition.cpp @@ -43,8 +43,8 @@ ThreadPlanTestCondition::ThreadPlanTestCondition ( lldb::BreakpointLocationSP break_loc_sp, bool stop_others) : ThreadPlan (ThreadPlan::eKindTestCondition, "test condition", thread, eVoteNoOpinion, eVoteNoOpinion), - m_exe_ctx (exe_ctx), m_expression (expression), + m_exe_ctx (exe_ctx), m_break_loc_sp (break_loc_sp), m_did_stop (false), m_stop_others (stop_others) diff --git a/lldb/source/Target/ThreadPlanTracer.cpp b/lldb/source/Target/ThreadPlanTracer.cpp index fe95b9a5a9a..961c9cda1ae 100644 --- a/lldb/source/Target/ThreadPlanTracer.cpp +++ b/lldb/source/Target/ThreadPlanTracer.cpp @@ -33,17 +33,17 @@ using namespace lldb_private; #pragma mark ThreadPlanTracer ThreadPlanTracer::ThreadPlanTracer (Thread &thread, lldb::StreamSP &stream_sp) : + m_thread (thread), m_single_step(true), m_enabled (false), - m_thread (thread), m_stream_sp (stream_sp) { } ThreadPlanTracer::ThreadPlanTracer (Thread &thread) : + m_thread (thread), m_single_step(true), m_enabled (false), - m_thread (thread), m_stream_sp () { } |