diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-03-08 02:51:48 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-03-08 02:51:48 +0000 |
commit | 591432136c78ab61ac1233cb813077e4c7c2f25e (patch) | |
tree | 045e060e6ffdefc5d8d66db51c84a27d770df8e8 | |
parent | 7c2cdb1c05cd94b494729f5e034aec0562165230 (diff) |
A few more tests for instruction encodings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127209 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/MC/ARM/neon-shift-encoding.s | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/MC/ARM/neon-shift-encoding.s b/test/MC/ARM/neon-shift-encoding.s index 3d34de01af..292692d007 100644 --- a/test/MC/ARM/neon-shift-encoding.s +++ b/test/MC/ARM/neon-shift-encoding.s @@ -165,3 +165,10 @@ vqrshrn.s32 d16, q8, #13 @ CHECK: vqrshrn.s64 d16, q8, #13 @ encoding: [0x70,0x09,0xf3,0xf2] vqrshrn.s64 d16, q8, #13 + +@ CHECK: vqrshrn.u16 d16, q8, #4 @ encoding: [0x70,0x09,0xcc,0xf3] + vqrshrn.u16 d16, q8, #4 +@ CHECK: vqrshrn.u32 d16, q8, #13 @ encoding: [0x70,0x09,0xd3,0xf3] + vqrshrn.u32 d16, q8, #13 +@ CHECK: vqrshrn.u64 d16, q8, #13 @ encoding: [0x70,0x09,0xf3,0xf3] + vqrshrn.u64 d16, q8, #13 |