diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-04-16 22:40:20 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-04-16 22:40:20 +0000 |
commit | 6b5e2261f03cd10090e15e29f0cb527298da111f (patch) | |
tree | eb962421f64c1ce29fa786545f5d665f5039a755 /test/MC | |
parent | a475cffeb463990d6e0c7eca6460da78428c233c (diff) | |
download | external_llvm-6b5e2261f03cd10090e15e29f0cb527298da111f.zip external_llvm-6b5e2261f03cd10090e15e29f0cb527298da111f.tar.gz external_llvm-6b5e2261f03cd10090e15e29f0cb527298da111f.tar.bz2 |
Fixed a bug in DisassembleN1RegModImmFrm() where a break stmt was missing for a
case. Also, the 0xFF hex literal involved in the shift for ESize64 should be
suffixed "ul" to preserve the shift result.
Implemented printHex*ImmOperand() by copying from ARMAsmPrinter.cpp and added a
test case for DisassembleN1RegModImmFrm()/printHex64ImmOperand().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101557 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC')
-rw-r--r-- | test/MC/Disassembler/neon-tests.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/MC/Disassembler/neon-tests.txt b/test/MC/Disassembler/neon-tests.txt index 5d37b8c..cf9f21b 100644 --- a/test/MC/Disassembler/neon-tests.txt +++ b/test/MC/Disassembler/neon-tests.txt @@ -18,6 +18,9 @@ # CHECK: vmov d0, d15 0x1f 0x01 0x2f 0xf2 +# CHECK: vmov.i64 q6, #0xFF00FF00FF +0x75 0xde 0x81 0xf2 + # CHECK: vmul.f32 d0, d0, d6 0x16 0x0d 0x00 0xf3 |