[Lldb-commits] [lldb] r196631 - If the StepThrough plan makes it back to the frame in which it started, it should say

Jim Ingham jingham at apple.com
Fri Dec 6 17:17:30 PST 2013


Author: jingham
Date: Fri Dec  6 19:17:30 2013
New Revision: 196631

URL: http://llvm.org/viewvc/llvm-project?rev=196631&view=rev
Log:
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>

Modified:
    lldb/trunk/source/Target/ThreadPlanStepThrough.cpp

Modified: lldb/trunk/source/Target/ThreadPlanStepThrough.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Target/ThreadPlanStepThrough.cpp?rev=196631&r1=196630&r2=196631&view=diff
==============================================================================
--- lldb/trunk/source/Target/ThreadPlanStepThrough.cpp (original)
+++ lldb/trunk/source/Target/ThreadPlanStepThrough.cpp Fri Dec  6 19:17:30 2013
@@ -161,7 +161,7 @@ ThreadPlanStepThrough::ShouldStop (Event
     // First, did we hit the backstop breakpoint?
     if (HitOurBackstopBreakpoint())
     {
-        SetPlanComplete(false);
+        SetPlanComplete(true);
         return true;
     }
 





More information about the lldb-commits mailing list