Skip to content

Commit 40fbc76

Browse files
[lldb] Fix the build
This patch fixes: lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp:623:47: error: expected ';' after expression
1 parent 12da87b commit 40fbc76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ static llvm::StringRef GetFormatNameOrEmpty(const RegisterInfo &reg_info) {
620620
case eFormatFloat128:
621621
return "float128";
622622
default:
623-
llvm_unreachable("Unkown register format")
623+
llvm_unreachable("Unknown register format");
624624
};
625625
}
626626

0 commit comments

Comments
 (0)