diff options
author | Jim Grosbach <grosbach@apple.com> | 2012-01-23 19:39:08 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2012-01-23 19:39:08 +0000 |
commit | 8b31f95bdde1e3809a1c9fdb6926b1840effcf9c (patch) | |
tree | 60744d49c9f1d92020be37bca59c6bba27656100 /test | |
parent | ee705a73f6465244a4eef0e6c4f930f87c160a6a (diff) | |
download | external_llvm-8b31f95bdde1e3809a1c9fdb6926b1840effcf9c.zip external_llvm-8b31f95bdde1e3809a1c9fdb6926b1840effcf9c.tar.gz external_llvm-8b31f95bdde1e3809a1c9fdb6926b1840effcf9c.tar.bz2 |
Simplify some NEON assembly pseudo definitions.
Let the generic token alias definitions handle the data subtype
suffices. We don't need explicit versions for each.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148718 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/MC/ARM/neon-vst-encoding.s | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/MC/ARM/neon-vst-encoding.s b/test/MC/ARM/neon-vst-encoding.s index 3d69651..57c7fe1 100644 --- a/test/MC/ARM/neon-vst-encoding.s +++ b/test/MC/ARM/neon-vst-encoding.s @@ -99,21 +99,21 @@ vst2.8 {d16[1], d17[1]}, [r0, :16] - vst2.16 {d16[1], d17[1]}, [r0, :32] - vst2.32 {d16[1], d17[1]}, [r0] - vst2.16 {d17[1], d19[1]}, [r0] - vst2.32 {d17[0], d19[0]}, [r0, :64] + vst2.p16 {d16[1], d17[1]}, [r0, :32] + vst2.i32 {d16[1], d17[1]}, [r0] + vst2.u16 {d17[1], d19[1]}, [r0] + vst2.f32 {d17[0], d19[0]}, [r0, :64] vst2.8 {d2[4], d3[4]}, [r2], r3 - vst2.8 {d2[4], d3[4]}, [r2]! - vst2.8 {d2[4], d3[4]}, [r2] + vst2.u8 {d2[4], d3[4]}, [r2]! + vst2.p8 {d2[4], d3[4]}, [r2] vst2.16 {d17[1], d19[1]}, [r0] vst2.32 {d17[0], d19[0]}, [r0, :64] - vst2.16 {d7[1], d9[1]}, [r1]! + vst2.i16 {d7[1], d9[1]}, [r1]! vst2.32 {d6[0], d8[0]}, [r2, :64]! vst2.16 {d2[1], d4[1]}, [r3], r5 - vst2.32 {d5[0], d7[0]}, [r4, :64], r7 + vst2.u32 {d5[0], d7[0]}, [r4, :64], r7 @ CHECK: vst2.8 {d16[1], d17[1]}, [r0, :16] @ encoding: [0x3f,0x01,0xc0,0xf4] @ CHECK: vst2.16 {d16[1], d17[1]}, [r0, :32] @ encoding: [0x5f,0x05,0xc0,0xf4] |