summaryrefslogtreecommitdiffstats
path: root/lldb/source/Target/ThreadPlanCallFunction.cpp
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2010-07-16 12:32:33 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2010-07-16 12:32:33 +0000
commit1ee0d4f7f358d4b598fb22c696c1c50816adc622 (patch)
tree811bf2064ed94c3d519def474f932c09a45b9af6 /lldb/source/Target/ThreadPlanCallFunction.cpp
parent50729ad717ab4bf1d3cf002d5ecb28286acdd89d (diff)
downloadbcm5719-llvm-1ee0d4f7f358d4b598fb22c696c1c50816adc622.tar.gz
bcm5719-llvm-1ee0d4f7f358d4b598fb22c696c1c50816adc622.zip
Fix constructor initialization order. Patch by Bill Lynch.
llvm-svn: 108524
Diffstat (limited to 'lldb/source/Target/ThreadPlanCallFunction.cpp')
-rw-r--r--lldb/source/Target/ThreadPlanCallFunction.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/lldb/source/Target/ThreadPlanCallFunction.cpp b/lldb/source/Target/ThreadPlanCallFunction.cpp
index 0309505e4ae..55e9d25133c 100644
--- a/lldb/source/Target/ThreadPlanCallFunction.cpp
+++ b/lldb/source/Target/ThreadPlanCallFunction.cpp
@@ -36,12 +36,12 @@ ThreadPlanCallFunction::ThreadPlanCallFunction (Thread &thread,
bool stop_other_threads,
bool discard_on_error) :
ThreadPlan (ThreadPlan::eKindCallFunction, "Call function plan", thread, eVoteNoOpinion, eVoteNoOpinion),
- m_valid(false),
- m_process(thread.GetProcess()),
+ m_valid (false),
+ m_stop_other_threads (stop_other_threads),
m_arg_addr (arg),
m_args (NULL),
- m_thread(thread),
- m_stop_other_threads(stop_other_threads)
+ m_process (thread.GetProcess()),
+ m_thread (thread)
{
SetOkayToDiscard (discard_on_error);
@@ -90,12 +90,12 @@ ThreadPlanCallFunction::ThreadPlanCallFunction (Thread &thread,
bool stop_other_threads,
bool discard_on_error) :
ThreadPlan (ThreadPlan::eKindCallFunction, "Call function plan", thread, eVoteNoOpinion, eVoteNoOpinion),
- m_valid(false),
- m_process(thread.GetProcess()),
+ m_valid (false),
+ m_stop_other_threads (stop_other_threads),
m_arg_addr (0),
m_args (&args),
- m_thread(thread),
- m_stop_other_threads(stop_other_threads)
+ m_process (thread.GetProcess()),
+ m_thread (thread)
{
SetOkayToDiscard (discard_on_error);
OpenPOWER on IntegriCloud