aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/ARM
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2010-07-14 06:30:44 +0000
committerBob Wilson <bob.wilson@apple.com>2010-07-14 06:30:44 +0000
commit046afdb50b4884470a93f1ff0c68a24dad110062 (patch)
tree19931f9d97e6b98ed2fdad1e9fb8bd2eebcbf2d4 /lib/Target/ARM
parent07c9b64719f913015d23c7b6d1e0f135ddc3d018 (diff)
downloadexternal_llvm-046afdb50b4884470a93f1ff0c68a24dad110062.zip
external_llvm-046afdb50b4884470a93f1ff0c68a24dad110062.tar.gz
external_llvm-046afdb50b4884470a93f1ff0c68a24dad110062.tar.bz2
The bits in the cmode field of 32-bit VMOV immediate instructions all depend
of the value of the immediate. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108323 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM')
-rw-r--r--lib/Target/ARM/ARMInstrNEON.td4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMInstrNEON.td b/lib/Target/ARM/ARMInstrNEON.td
index cb0379c..bde806d 100644
--- a/lib/Target/ARM/ARMInstrNEON.td
+++ b/lib/Target/ARM/ARMInstrNEON.td
@@ -2853,11 +2853,11 @@ def VMOVv8i16 : N1ModImm<1, 0b000, {1,0,?,0}, 0, 1, 0, 1, (outs QPR:$dst),
"vmov", "i16", "$dst, $SIMM", "",
[(set QPR:$dst, (v8i16 (NEONvmovImm timm:$SIMM)))]>;
-def VMOVv2i32 : N1ModImm<1, 0b000, {0,?,?,0}, 0, 0, 0, 1, (outs DPR:$dst),
+def VMOVv2i32 : N1ModImm<1, 0b000, {?,?,?,?}, 0, 0, 0, 1, (outs DPR:$dst),
(ins nModImm:$SIMM), IIC_VMOVImm,
"vmov", "i32", "$dst, $SIMM", "",
[(set DPR:$dst, (v2i32 (NEONvmovImm timm:$SIMM)))]>;
-def VMOVv4i32 : N1ModImm<1, 0b000, {0,?,?,0}, 0, 1, 0, 1, (outs QPR:$dst),
+def VMOVv4i32 : N1ModImm<1, 0b000, {?,?,?,?}, 0, 1, 0, 1, (outs QPR:$dst),
(ins nModImm:$SIMM), IIC_VMOVImm,
"vmov", "i32", "$dst, $SIMM", "",
[(set QPR:$dst, (v4i32 (NEONvmovImm timm:$SIMM)))]>;