diff options
author | Jim Ingham <jingham@apple.com> | 2012-05-11 23:47:32 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2012-05-11 23:47:32 +0000 |
commit | 7ba6e991583603e0dbeb632a9086a9f9fbf5445c (patch) | |
tree | 600187733c0ecfc1bb7034a2d940c81a57be710e /lldb/source/Commands/CommandObjectThread.cpp | |
parent | 87a170c1e60f0b0c109f4c94a96e4ba43ac160cb (diff) | |
download | llvm-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.cpp | 2 |
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) |