From 2ff4c25b7efff64b3b662d0bedcfe7edebcf20b9 Mon Sep 17 00:00:00 2001 From: Augusto Noronha Date: Thu, 10 Oct 2024 15:01:20 -0700 Subject: Revert "[lldb] Implement basic support for reverse-continue (#99736)" This reverts commit d5e1de6da96c1ab3b8cae68447e8ed3696a7006e. --- lldb/source/Interpreter/CommandInterpreter.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lldb/source/Interpreter/CommandInterpreter.cpp') diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index ea60492..8d3a82e 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -2553,8 +2553,7 @@ bool CommandInterpreter::DidProcessStopAbnormally() const { const StopReason reason = stop_info->GetStopReason(); if (reason == eStopReasonException || reason == eStopReasonInstrumentation || - reason == eStopReasonProcessorTrace || reason == eStopReasonInterrupt || - reason == eStopReasonHistoryBoundary) + reason == eStopReasonProcessorTrace || reason == eStopReasonInterrupt) return true; if (reason == eStopReasonSignal) { -- cgit v1.1