aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectThread.cpp
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2012-05-11 23:47:32 +0000
committerJim Ingham <jingham@apple.com>2012-05-11 23:47:32 +0000
commit7ba6e991583603e0dbeb632a9086a9f9fbf5445c (patch)
tree600187733c0ecfc1bb7034a2d940c81a57be710e /lldb/source/Commands/CommandObjectThread.cpp
parent87a170c1e60f0b0c109f4c94a96e4ba43ac160cb (diff)
downloadllvm-7ba6e991583603e0dbeb632a9086a9f9fbf5445c.zip
llvm-7ba6e991583603e0dbeb632a9086a9f9fbf5445c.tar.gz
llvm-7ba6e991583603e0dbeb632a9086a9f9fbf5445c.tar.bz2
Found one more place where the OkayToDiscard needs to be consulted.
Also changed the defaults for SBThread::Step* to not delete extant plans. Also added some test cases to test more complex stepping scenarios. llvm-svn: 156667
Diffstat (limited to 'lldb/source/Commands/CommandObjectThread.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectThread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp
index 73cc9a2..040278b 100644
--- a/lldb/source/Commands/CommandObjectThread.cpp
+++ b/lldb/source/Commands/CommandObjectThread.cpp
@@ -946,7 +946,7 @@ public:
return false;
}
- const bool abort_other_plans = true;
+ const bool abort_other_plans = false;
StackFrame *frame = thread->GetStackFrameAtIndex(m_options.m_frame_idx).get();
if (frame == NULL)