[Lldb-commits] [lldb] 40fbc76 - [lldb] Fix the build

Kazu Hirata via lldb-commits lldb-commits at lists.llvm.org
Tue Aug 5 11:10:02 PDT 2025


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");
   };
 }
 


        


More information about the lldb-commits mailing list