forked from OSchip/llvm-project
"thread step-out" should run all threads by default.
llvm-svn: 163937
This commit is contained in:
parent
f76ab67c55
commit
43d886ec90
|
@ -449,6 +449,13 @@ protected:
|
|||
bool bool_stop_other_threads;
|
||||
if (m_options.m_run_mode == eAllThreads)
|
||||
bool_stop_other_threads = false;
|
||||
else if (m_options.m_run_mode == eOnlyDuringStepping)
|
||||
{
|
||||
if (m_step_type == eStepTypeOut)
|
||||
bool_stop_other_threads = false;
|
||||
else
|
||||
bool_stop_other_threads = true;
|
||||
}
|
||||
else
|
||||
bool_stop_other_threads = true;
|
||||
|
||||
|
|
Loading…
Reference in New Issue