Stepping through a trampoline should do "stop others" unless All Threads is requested.
git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@108311 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Target/ThreadPlanStepInRange.cpp b/source/Target/ThreadPlanStepInRange.cpp
index 58f6197..b95b35e 100644
--- a/source/Target/ThreadPlanStepInRange.cpp
+++ b/source/Target/ThreadPlanStepInRange.cpp
@@ -101,8 +101,11 @@
ThreadPlan* new_plan = NULL;
+ // Stepping through should be done stopping other threads in general, since we're setting a breakpoint and
+ // continuing...
+
bool stop_others;
- if (m_stop_others == lldb::eOnlyThisThread)
+ if (m_stop_others != lldb::eAllThreads)
stop_others = true;
else
stop_others = false;