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/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h | |
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/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h index 116b47c..898d176 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h @@ -331,10 +331,6 @@ public: bool GetMultiprocessSupported(); - bool GetReverseContinueSupported(); - - bool GetReverseStepSupported(); - LazyBool SupportsAllocDeallocMemory() // const { // Uncomment this to have lldb pretend the debug server doesn't respond to @@ -565,8 +561,6 @@ protected: LazyBool m_supports_memory_tagging = eLazyBoolCalculate; LazyBool m_supports_qSaveCore = eLazyBoolCalculate; LazyBool m_uses_native_signals = eLazyBoolCalculate; - LazyBool m_supports_reverse_continue = eLazyBoolCalculate; - LazyBool m_supports_reverse_step = eLazyBoolCalculate; bool m_supports_qProcessInfoPID : 1, m_supports_qfProcessInfo : 1, m_supports_qUserName : 1, m_supports_qGroupName : 1, |