[llvm] r336107 - [X86] Fix test/MC/AsmParser/exprs-invalid.s after rL336104

Alex Bradbury via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 2 07:13:27 PDT 2018


Author: asb
Date: Mon Jul  2 07:13:27 2018
New Revision: 336107

URL: http://llvm.org/viewvc/llvm-project?rev=336107&view=rev
Log:
[X86] Fix test/MC/AsmParser/exprs-invalid.s after rL336104

This was my mistake for only running test/MC/X86 and test/CodeGen/X86. 
Arguably .word should be removed from this test, as it is not supported 
universally.

Modified:
    llvm/trunk/test/MC/AsmParser/exprs-invalid.s

Modified: llvm/trunk/test/MC/AsmParser/exprs-invalid.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/AsmParser/exprs-invalid.s?rev=336107&r1=336106&r2=336107&view=diff
==============================================================================
--- llvm/trunk/test/MC/AsmParser/exprs-invalid.s (original)
+++ llvm/trunk/test/MC/AsmParser/exprs-invalid.s Mon Jul  2 07:13:27 2018
@@ -13,5 +13,5 @@
 // CHECK-ERRORS: [[@LINE+1]]:7: error: out of range literal value in '.long' directive
 .long 4e71cf69 // double floating point constant due to missing "0x"
 
-// CHECK-ERRORS: [[@LINE+1]]:7: error: literal value out of range for directive
+// CHECK-ERRORS: [[@LINE+1]]:7:  error: out of range literal value in '.word' directive
 .word 0xfffffffff




More information about the llvm-commits mailing list