Generalize a previous change, fixing PR8855 - an valid large immediate
authorChris Lattner <sabre@nondot.org>
Sat, 25 Dec 2010 21:36:35 +0000 (21:36 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 25 Dec 2010 21:36:35 +0000 (21:36 +0000)
rejected by the mc assembler.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122557 91177308-0d34-0410-b5e6-96231b3b80d8

lib/MC/MCParser/AsmLexer.cpp
test/MC/X86/x86-64.s

index e474a1501c8673286ac4ccf7d7cb308f20f2e0a7..5c617bc93d1d7c50f0a8d233a00e64d39dc817e3 100644 (file)
@@ -184,12 +184,12 @@ AsmToken AsmLexer::LexDigit() {
 
     long long Value;
     if (Result.getAsInteger(10, Value)) {
-      // We have to handle minint_as_a_positive_value specially, because
-      // - minint_as_a_positive_value = minint and it is valid.
-      if (Result == "9223372036854775808")
-        Value = -9223372036854775808ULL;
-      else
-        return ReturnError(TokStart, "Invalid decimal number");
+      // Allow positive values that are too large to fit into a signed 64-bit
+      // integer, but that do fit in an unsigned one, we just convert them over.
+      unsigned long long UValue;
+      if (Result.getAsInteger(10, UValue))
+        return ReturnError(TokStart, "invalid decimal number");
+      Value = (long long)UValue;
     }
     
     // The darwin/x86 (and x86-64) assembler accepts and ignores ULL and LL
index a285c6f6456640becbd4ec3fc99ad7bd719dc834..5375919d55bd238382bdbd4c467192a1067f49b9 100644 (file)
@@ -916,3 +916,7 @@ movq        %mm5, %rbx // CHECK: movd %mm5, %rbx # encoding: [0x48,0x0f,0x7e,0xeb]
 
 rex64 // CHECK: rex64 # encoding: [0x48]
 data16 // CHECK: data16 # encoding: [0x66]
+
+// PR8855
+movq 18446744073709551615,%rbx   // CHECK: movq        -1, %rbx
+