[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:21:13 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.
----------------
jurahul wrote:
Agreed, but this is just changing the comment to be "less excited" :)
https://github.com/llvm/llvm-project/pull/113748
More information about the llvm-commits
mailing list