Author: Kazu Hirata
Date: 2025-08-05T11:09:56-07:00
New Revision: 40fbc76dc8e81ede437b581a652ce6e5850cbc7b

URL: 
https://github.com/llvm/llvm-project/commit/40fbc76dc8e81ede437b581a652ce6e5850cbc7b
DIFF: 
https://github.com/llvm/llvm-project/commit/40fbc76dc8e81ede437b581a652ce6e5850cbc7b.diff

LOG: [lldb] Fix the build

This patch fixes:

  
lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp:623:47:
  error: expected ';' after expression

Added: 
    

Modified: 
    lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp

Removed: 
    


################################################################################
diff  --git 
a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp 
b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
index 04786afedc184..e3202d62ec7c8 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");
   };
 }
 


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to