diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2024-05-03 12:14:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-03 12:14:45 -0700 |
commit | ca8b064973b5bf31168a60b41ee9c071cf321777 (patch) | |
tree | 5ac4f94fdd2bddb361ea3d933563ea83ad62f83a /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h | |
parent | f561daf989cfe011dd0edafc4621fac5ed421435 (diff) | |
download | llvm-ca8b064973b5bf31168a60b41ee9c071cf321777.zip llvm-ca8b064973b5bf31168a60b41ee9c071cf321777.tar.gz llvm-ca8b064973b5bf31168a60b41ee9c071cf321777.tar.bz2 |
Revert "[lldb] Unify CalculateMD5 return types" (#90998)
Reverts llvm/llvm-project#90921
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h index 898d176..4be7eb0 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h @@ -392,7 +392,7 @@ public: *command_output, // Pass nullptr if you don't want the command output const Timeout<std::micro> &timeout); - llvm::ErrorOr<llvm::MD5::MD5Result> CalculateMD5(const FileSpec &file_spec); + bool CalculateMD5(const FileSpec &file_spec, uint64_t &low, uint64_t &high); lldb::DataBufferSP ReadRegister( lldb::tid_t tid, |