aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2025-08-05 11:09:56 -0700
committerKazu Hirata <kazu@google.com>2025-08-05 11:09:56 -0700
commit40fbc76dc8e81ede437b581a652ce6e5850cbc7b (patch)
tree86171bbf288a58b8941eaf5a815b23d3c5202083 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
parent12da87bef12d9545775a5c375cfc22904ca4602d (diff)
downloadllvm-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.cpp2
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 &reg_info) {
case eFormatFloat128:
return "float128";
default:
- llvm_unreachable("Unkown register format")
+ llvm_unreachable("Unknown register format");
};
}