Skip to content

Commit cfff219

Browse files
authored
Merge pull request #256 from Teemperor/RevertReturnInThreadPlanStepInRangeDefaultShouldStopHereCallbackMaster
[upstreaming] Revert NFC change to return in ThreadPlanStepInRange::D…
2 parents 285469a + 3169d09 commit cfff219

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Target/ThreadPlanStepInRange.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ bool ThreadPlanStepInRange::DefaultShouldStopHereCallback(
470470
should_stop_here = ThreadPlanShouldStopHere::DefaultShouldStopHereCallback(
471471
current_plan, flags, operation, status, baton);
472472
if (!should_stop_here)
473-
return false;
473+
return should_stop_here;
474474

475475
if (should_stop_here && current_plan->GetKind() == eKindStepInRange &&
476476
operation == eFrameCompareYounger) {

0 commit comments

Comments
 (0)