aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Interpreter/CommandInterpreter.cpp
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2025-01-31 13:11:20 -0800
committerAdrian Prantl <aprantl@apple.com>2025-01-31 13:11:20 -0800
commit87b7f63a117c340a6d9ca47959335fd7ef6c7ad2 (patch)
tree3c0f293b7b95a3c6a0a67006d57475d80147c50f /lldb/source/Interpreter/CommandInterpreter.cpp
parentffe3129e9bdc146ee4d91e849173d1c64b1ae974 (diff)
downloadllvm-87b7f63a117c340a6d9ca47959335fd7ef6c7ad2.zip
llvm-87b7f63a117c340a6d9ca47959335fd7ef6c7ad2.tar.gz
llvm-87b7f63a117c340a6d9ca47959335fd7ef6c7ad2.tar.bz2
Revert "Reland "[lldb] Implement basic support for reverse-continue" (#125242)"
This reverts commit 7e66cf74fb4e6a103f923e34700a7b6f20ac2a9b. Breaking green dragon: https://green.lab.llvm.org/job/llvm.org/view/LLDB/job/as-lldb-cmake/19569/testReport/junit/lldb-api/functionalities_reverse-execution/TestReverseContinueWatchpoints_py/
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 628f8c5..4869b81 100644
--- a/lldb/source/Interpreter/CommandInterpreter.cpp
+++ b/lldb/source/Interpreter/CommandInterpreter.cpp
@@ -2560,8 +2560,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) {