diff options
author | Alex Bradbury <asb@lowrisc.org> | 2018-07-02 14:13:27 +0000 |
---|---|---|
committer | Alex Bradbury <asb@lowrisc.org> | 2018-07-02 14:13:27 +0000 |
commit | 07ef10ccb6e74586f1a29e8afccad49c1e7913d5 (patch) | |
tree | aa89edf72b5948409165a563095cda441d7054fe | |
parent | 03b0a4856f5861e2c2f0b2d8f03ac53c6c480789 (diff) | |
download | llvm-07ef10ccb6e74586f1a29e8afccad49c1e7913d5.zip llvm-07ef10ccb6e74586f1a29e8afccad49c1e7913d5.tar.gz llvm-07ef10ccb6e74586f1a29e8afccad49c1e7913d5.tar.bz2 |
[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.
llvm-svn: 336107
-rw-r--r-- | llvm/test/MC/AsmParser/exprs-invalid.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/MC/AsmParser/exprs-invalid.s b/llvm/test/MC/AsmParser/exprs-invalid.s index 09a5bcb..dd1bac4 100644 --- a/llvm/test/MC/AsmParser/exprs-invalid.s +++ b/llvm/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 |