diff options
| author | Bob Wilson <bob.wilson@apple.com> | 2010-01-17 06:35:17 +0000 |
|---|---|---|
| committer | Bob Wilson <bob.wilson@apple.com> | 2010-01-17 06:35:17 +0000 |
| commit | 9349437c65d48cbc69aa79d3780b6d99de50d1b3 (patch) | |
| tree | 315bbea5679fb6510084b8e2df34b3ccc4426e9e /llvm/lib/Target/ARM | |
| parent | 55d2ebda3187bf72f5383a9a867dd01220918edc (diff) | |
| download | bcm5719-llvm-9349437c65d48cbc69aa79d3780b6d99de50d1b3.tar.gz bcm5719-llvm-9349437c65d48cbc69aa79d3780b6d99de50d1b3.zip | |
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.
llvm-svn: 93677
Diffstat (limited to 'llvm/lib/Target/ARM')
| -rw-r--r-- | llvm/lib/Target/ARM/ARMInstrNEON.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrNEON.td b/llvm/lib/Target/ARM/ARMInstrNEON.td index 61b770560b3..ba2cd946581 100644 --- a/llvm/lib/Target/ARM/ARMInstrNEON.td +++ b/llvm/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. |

