[llvm] [LLVM] Change error messages to start with lower case (PR #113748)
Rahul Joshi via llvm-commits
llvm-commits at lists.llvm.org
Sun Oct 27 06:22:04 PDT 2024
================
@@ -156,7 +156,7 @@ int TGLexer::getNextChar() {
return EOF;
}
PrintError(getLoc(),
- "NUL character is invalid in source; treated as space");
+ "nul character is invalid in source; treated as space");
----------------
jurahul wrote:
Done, and also changes a similar error in Asm lexer to be consistent in wording with this one (null bytes -> NUL character)
https://github.com/llvm/llvm-project/pull/113748
More information about the llvm-commits
mailing list