From bf14300d4c6a72beef955f55591d6f0b674b0a82 Mon Sep 17 00:00:00 2001 From: Alex Bradbury Date: Mon, 2 Jul 2018 14:13:27 +0000 Subject: [PATCH] [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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@336107 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/MC/AsmParser/exprs-invalid.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/MC/AsmParser/exprs-invalid.s b/test/MC/AsmParser/exprs-invalid.s index 09a5bcbda65..dd1bac46b55 100644 --- a/test/MC/AsmParser/exprs-invalid.s +++ b/test/MC/AsmParser/exprs-invalid.s @@ -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 -- 2.11.0