From: Chad Rosier Date: Tue, 12 Feb 2013 01:12:24 +0000 (+0000) Subject: Update error message due to previous commit, r174926. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=53e5bb70db34b736eed01c1580af1afd7314a2d8;p=oota-llvm.git Update error message due to previous commit, r174926. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174927 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/MC/MCParser/AsmLexer.cpp b/lib/MC/MCParser/AsmLexer.cpp index a7de64f32e2..530e94e8d37 100644 --- a/lib/MC/MCParser/AsmLexer.cpp +++ b/lib/MC/MCParser/AsmLexer.cpp @@ -285,9 +285,11 @@ AsmToken AsmLexer::LexDigit() { // Either octal or hexidecimal. long long Value; unsigned Radix = doLookAhead(CurPtr, 8); + bool isHex = Radix == 16; StringRef Result(TokStart, CurPtr - TokStart); if (Result.getAsInteger(Radix, Value)) - return ReturnError(TokStart, "invalid octal number"); + return ReturnError(TokStart, !isHex ? "invalid octal number" : + "invalid hexdecimal number"); // Consume the [hH]. if (Radix == 16)