[llvm] [LLVM] Change error messages to start with lower case (PR #113748)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Sat Oct 26 08:03:03 PDT 2024
================
@@ -60,8 +60,8 @@ uint64_t LLLexer::atoull(const char *Buffer, const char *End) {
uint64_t OldRes = Result;
Result *= 10;
Result += *Buffer-'0';
- if (Result < OldRes) { // Uh, oh, overflow detected!!!
- LexError("constant bigger than 64 bits detected!");
+ if (Result < OldRes) { // overflow detected.
----------------
arsenm wrote:
Not an error message
https://github.com/llvm/llvm-project/pull/113748
More information about the llvm-commits
mailing list