diff options
author | Tim Northover <tnorthover@apple.com> | 2016-07-14 17:04:34 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2016-07-14 17:04:34 +0000 |
commit | 6003fb58df1d099fec6c50c5ec0b83c4dddfe4bd (patch) | |
tree | 66ff0061cdc193e9b438223f7929389351584cda /llvm/test/MC/ARM/fp-const-errors.s | |
parent | 69b46751804a8ac162fd219188cadddc6721ca44 (diff) | |
download | bcm5719-llvm-6003fb58df1d099fec6c50c5ec0b83c4dddfe4bd.tar.gz bcm5719-llvm-6003fb58df1d099fec6c50c5ec0b83c4dddfe4bd.zip |
ARM: fix vmov.i64 immediate validity check
Typo meant we were only checking the low byte (repeatedly).
llvm-svn: 275437
Diffstat (limited to 'llvm/test/MC/ARM/fp-const-errors.s')
-rw-r--r-- | llvm/test/MC/ARM/fp-const-errors.s | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/test/MC/ARM/fp-const-errors.s b/llvm/test/MC/ARM/fp-const-errors.s index 2a68ddbe727..a91799ba21d 100644 --- a/llvm/test/MC/ARM/fp-const-errors.s +++ b/llvm/test/MC/ARM/fp-const-errors.s @@ -20,3 +20,6 @@ fconsts s1, #1.0 fconstd d2, #1.0 @ CHECK: error: invalid floating point immediate + +vmov.i64 d0, 0x8000000000000000 +@ CHECK: error: invalid operand for instruction |