"thread step-out" should run all threads by default.

llvm-svn: 163937
This commit is contained in:
Jim Ingham 2012-09-14 21:04:15 +00:00
parent f76ab67c55
commit 43d886ec90
1 changed files with 7 additions and 0 deletions

View File

@ -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;