diff options
author | Kazu Hirata <kazu@google.com> | 2025-08-05 11:09:56 -0700 |
---|---|---|
committer | Kazu Hirata <kazu@google.com> | 2025-08-05 11:09:56 -0700 |
commit | 40fbc76dc8e81ede437b581a652ce6e5850cbc7b (patch) | |
tree | 86171bbf288a58b8941eaf5a815b23d3c5202083 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp | |
parent | 12da87bef12d9545775a5c375cfc22904ca4602d (diff) | |
download | llvm-40fbc76dc8e81ede437b581a652ce6e5850cbc7b.zip llvm-40fbc76dc8e81ede437b581a652ce6e5850cbc7b.tar.gz llvm-40fbc76dc8e81ede437b581a652ce6e5850cbc7b.tar.bz2 |
[lldb] Fix the build
This patch fixes:
lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp:623:47:
error: expected ';' after expression
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp index 04786af..e3202d6 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp @@ -620,7 +620,7 @@ static llvm::StringRef GetFormatNameOrEmpty(const RegisterInfo ®_info) { case eFormatFloat128: return "float128"; default: - llvm_unreachable("Unkown register format") + llvm_unreachable("Unknown register format"); }; } |