diff options
author | Jason Molenda <jason@molenda.com> | 2022-08-02 13:53:34 -0700 |
---|---|---|
committer | Jason Molenda <jason@molenda.com> | 2022-08-02 13:53:34 -0700 |
commit | 803386da2ff80f0a5e75d2baee6dfa79d9d8d26f (patch) | |
tree | 4657ee43752ee8b14ed7afb27cd721ee8d05193c /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h | |
parent | d8879fba8825b9799166ba0ea552d4027bfb8ad1 (diff) | |
download | llvm-803386da2ff80f0a5e75d2baee6dfa79d9d8d26f.zip llvm-803386da2ff80f0a5e75d2baee6dfa79d9d8d26f.tar.gz llvm-803386da2ff80f0a5e75d2baee6dfa79d9d8d26f.tar.bz2 |
Revert "Allow firmware binaries to be specified only by load address"
This reverts commit d8879fba8825b9799166ba0ea552d4027bfb8ad1.
Debian bot failure; I included <uuid/uuid.h> to get uuid_is_null() but
don't get it there. Will memcmp or whatever & recommit.
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h index 3a62747..3d838d6 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h @@ -220,8 +220,6 @@ public: bool GetProcessStandaloneBinary(UUID &uuid, lldb::addr_t &value, bool &value_is_offset); - std::vector<lldb::addr_t> GetProcessStandaloneBinaries(); - void GetRemoteQSupported(); bool GetVContSupported(char flavor); @@ -595,7 +593,6 @@ protected: UUID m_process_standalone_uuid; lldb::addr_t m_process_standalone_value = LLDB_INVALID_ADDRESS; bool m_process_standalone_value_is_offset = false; - std::vector<lldb::addr_t> m_binary_addresses; llvm::VersionTuple m_os_version; llvm::VersionTuple m_maccatalyst_version; std::string m_os_build; |