mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
MC/AsmParser: Handle a missed case of floating literals in the lexer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114733 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6b096c35c7
commit
facb34b41c
@ -145,7 +145,7 @@ static void SkipIgnoredIntegerSuffix(const char *&CurPtr) {
|
||||
/// Decimal integer: [1-9][0-9]*
|
||||
AsmToken AsmLexer::LexDigit() {
|
||||
// Decimal integer: [1-9][0-9]*
|
||||
if (CurPtr[-1] != '0') {
|
||||
if (CurPtr[-1] != '0' || CurPtr[0] == '.') {
|
||||
while (isdigit(*CurPtr))
|
||||
++CurPtr;
|
||||
|
||||
|
@ -10,3 +10,6 @@
|
||||
# CHECK: .quad 4597526701198935065
|
||||
# CHECK: .quad -4600933674317040845
|
||||
.double 5, .232, -11.1
|
||||
|
||||
# CHECK: .quad 0
|
||||
.double 0.0
|
||||
|
Loading…
x
Reference in New Issue
Block a user