diff options
author | Augusto Noronha <anoronha@apple.com> | 2024-10-10 15:01:20 -0700 |
---|---|---|
committer | Augusto Noronha <anoronha@apple.com> | 2024-10-10 15:05:58 -0700 |
commit | 2ff4c25b7efff64b3b662d0bedcfe7edebcf20b9 (patch) | |
tree | 4745bb41775ee5d30beda655c3760f3ebbcda592 /lldb/source/API/SBThread.cpp | |
parent | f02252e1fd2965db007cf7be74c448b7a119c321 (diff) | |
download | llvm-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/API/SBThread.cpp')
-rw-r--r-- | lldb/source/API/SBThread.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/source/API/SBThread.cpp b/lldb/source/API/SBThread.cpp index aca8a03..a99456e 100644 --- a/lldb/source/API/SBThread.cpp +++ b/lldb/source/API/SBThread.cpp @@ -172,7 +172,6 @@ size_t SBThread::GetStopReasonDataCount() { case eStopReasonInstrumentation: case eStopReasonProcessorTrace: case eStopReasonVForkDone: - case eStopReasonHistoryBoundary: // There is no data for these stop reasons. return 0; @@ -234,7 +233,6 @@ uint64_t SBThread::GetStopReasonDataAtIndex(uint32_t idx) { case eStopReasonInstrumentation: case eStopReasonProcessorTrace: case eStopReasonVForkDone: - case eStopReasonHistoryBoundary: // There is no data for these stop reasons. return 0; |