Skip to content

Commit 3169d09

Browse files
committed
[upstreaming] Revert NFC change to return in ThreadPlanStepInRange::DefaultShouldStopHereCallback
I'll upstream this change.
1 parent 535d747 commit 3169d09

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
@@ -467,7 +467,7 @@ bool ThreadPlanStepInRange::DefaultShouldStopHereCallback(
467467
should_stop_here = ThreadPlanShouldStopHere::DefaultShouldStopHereCallback(
468468
current_plan, flags, operation, status, baton);
469469
if (!should_stop_here)
470-
return false;
470+
return should_stop_here;
471471

472472
if (should_stop_here && current_plan->GetKind() == eKindStepInRange &&
473473
operation == eFrameCompareYounger) {

0 commit comments

Comments
 (0)