aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2010-01-17 06:35:17 +0000
committerBob Wilson <bob.wilson@apple.com>2010-01-17 06:35:17 +0000
commit3a4a832223e5649d97587e1be1e2d83f94a4baaa (patch)
treee3ba01d5bc2dd1410627e32a30e79b28a87aab79 /lib
parent507d32aad2152a9b889df085feca2f653925456c (diff)
downloadexternal_llvm-3a4a832223e5649d97587e1be1e2d83f94a4baaa.zip
external_llvm-3a4a832223e5649d97587e1be1e2d83f94a4baaa.tar.gz
external_llvm-3a4a832223e5649d97587e1be1e2d83f94a4baaa.tar.bz2
The Neon "vtst" instruction takes a suffix that is the element size alone --
adding an "i" to the suffix, indicating that the elements are integers, is accepted but not part of the standard syntax. This helps us pass a few more of the Neon tests from gcc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93677 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/ARM/ARMInstrNEON.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMInstrNEON.td b/lib/Target/ARM/ARMInstrNEON.td
index 61b7705..ba2cd94 100644
--- a/lib/Target/ARM/ARMInstrNEON.td
+++ b/lib/Target/ARM/ARMInstrNEON.td
@@ -2116,7 +2116,7 @@ def VACGTq : N3VQInt<1, 0, 0b10, 0b1110, 1, IIC_VBINQ, "vacgt", "f32",
v4i32, v4f32, int_arm_neon_vacgtq, 0>;
// VTST : Vector Test Bits
defm VTST : N3V_QHS<0, 0, 0b1000, 1, IIC_VBINi4D, IIC_VBINi4D, IIC_VBINi4Q,
- IIC_VBINi4Q, "vtst", "i", NEONvtst, 1>;
+ IIC_VBINi4Q, "vtst", "", NEONvtst, 1>;
// Vector Bitwise Operations.