aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Interpreter/CommandInterpreter.cpp
diff options
context:
space:
mode:
authorAugusto Noronha <anoronha@apple.com>2024-10-10 15:01:20 -0700
committerAugusto Noronha <anoronha@apple.com>2024-10-10 15:05:58 -0700
commit2ff4c25b7efff64b3b662d0bedcfe7edebcf20b9 (patch)
tree4745bb41775ee5d30beda655c3760f3ebbcda592 /lldb/source/Interpreter/CommandInterpreter.cpp
parentf02252e1fd2965db007cf7be74c448b7a119c321 (diff)
downloadllvm-2ff4c25b7efff64b3b662d0bedcfe7edebcf20b9.zip
llvm-2ff4c25b7efff64b3b662d0bedcfe7edebcf20b9.tar.gz
llvm-2ff4c25b7efff64b3b662d0bedcfe7edebcf20b9.tar.bz2
Revert "[lldb] Implement basic support for reverse-continue (#99736)"
This reverts commit d5e1de6da96c1ab3b8cae68447e8ed3696a7006e.
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 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) {