From 3169d099536a86fa34ca4bbc861966b6f19a09ff Mon Sep 17 00:00:00 2001 From: Raphael Isemann Date: Mon, 11 Nov 2019 13:32:55 +0100 Subject: [PATCH] [upstreaming] Revert NFC change to return in ThreadPlanStepInRange::DefaultShouldStopHereCallback I'll upstream this change. --- lldb/source/Target/ThreadPlanStepInRange.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Target/ThreadPlanStepInRange.cpp b/lldb/source/Target/ThreadPlanStepInRange.cpp index c6dc64056c3e7..bdf22c58a6215 100644 --- a/lldb/source/Target/ThreadPlanStepInRange.cpp +++ b/lldb/source/Target/ThreadPlanStepInRange.cpp @@ -467,7 +467,7 @@ bool ThreadPlanStepInRange::DefaultShouldStopHereCallback( should_stop_here = ThreadPlanShouldStopHere::DefaultShouldStopHereCallback( current_plan, flags, operation, status, baton); if (!should_stop_here) - return false; + return should_stop_here; if (should_stop_here && current_plan->GetKind() == eKindStepInRange && operation == eFrameCompareYounger) {