diff options
author | Jim Ingham <jingham@apple.com> | 2013-12-07 01:17:30 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2013-12-07 01:17:30 +0000 |
commit | b44af8ff25b61f17e3bb90759a2fef5f3ec6082c (patch) | |
tree | edc66a81593d009d3168a818acc0cee0b4c8deed | |
parent | ee3b2da880666e49dd4d2b2c083d4a4ae7bf9af4 (diff) | |
download | bcm5719-llvm-b44af8ff25b61f17e3bb90759a2fef5f3ec6082c.tar.gz bcm5719-llvm-b44af8ff25b61f17e3bb90759a2fef5f3ec6082c.zip |
If the StepThrough plan makes it back to the frame in which it started, it should say
it succeeded, since the plan that was using it can figure out what to do from there.
It should only say it failed if it truely went off into the weeds.
<rdar://problem/15597807>
llvm-svn: 196631
-rw-r--r-- | lldb/source/Target/ThreadPlanStepThrough.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Target/ThreadPlanStepThrough.cpp b/lldb/source/Target/ThreadPlanStepThrough.cpp index 37cd03c6986..18da6cdbd59 100644 --- a/lldb/source/Target/ThreadPlanStepThrough.cpp +++ b/lldb/source/Target/ThreadPlanStepThrough.cpp @@ -161,7 +161,7 @@ ThreadPlanStepThrough::ShouldStop (Event *event_ptr) // First, did we hit the backstop breakpoint? if (HitOurBackstopBreakpoint()) { - SetPlanComplete(false); + SetPlanComplete(true); return true; } |