aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Interpreter/CommandInterpreter.cpp
diff options
context:
space:
mode:
authorPavel Labath <pavel@labath.sk>2025-01-22 09:43:11 +0100
committerGitHub <noreply@github.com>2025-01-22 09:43:11 +0100
commit22561cfb443267905d4190f0e2a738e6b412457f (patch)
treed6c956b6abd5544862fbe04712cfed9e1bcde68a /lldb/source/Interpreter/CommandInterpreter.cpp
parentbc6f84a2db6e7d60d70cf9be8d6cce2a101d0faa (diff)
downloadllvm-22561cfb443267905d4190f0e2a738e6b412457f.zip
llvm-22561cfb443267905d4190f0e2a738e6b412457f.tar.gz
llvm-22561cfb443267905d4190f0e2a738e6b412457f.tar.bz2
Revert "[lldb] Implement basic support for reverse-continue" (#123906)
Reverts llvm/llvm-project#112079 due to failures on the arm bot.
Diffstat (limited to 'lldb/source/Interpreter/CommandInterpreter.cpp')
-rw-r--r--lldb/source/Interpreter/CommandInterpreter.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp
index 284955a..764dcfd 100644
--- a/lldb/source/Interpreter/CommandInterpreter.cpp
+++ b/lldb/source/Interpreter/CommandInterpreter.cpp
@@ -2557,8 +2557,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) {