aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2010-02-24 18:00:40 +0000
committerJohnny Chen <johnny.chen@apple.com>2010-02-24 18:00:40 +0000
commit39b03163a7f639b1c75c348bec425c35dc89eba4 (patch)
tree26819d748ebd20839530e7deb429f556009341c5
parentf6d009fb6fc19d9f7ee7cdc528bf8e83a758facc (diff)
Fixed typo of opcodestr, should be "vst1", not "vld1".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97044 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/ARM/ARMInstrNEON.td18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/Target/ARM/ARMInstrNEON.td b/lib/Target/ARM/ARMInstrNEON.td
index 91210aa449..b3350e6767 100644
--- a/lib/Target/ARM/ARMInstrNEON.td
+++ b/lib/Target/ARM/ARMInstrNEON.td
@@ -424,15 +424,15 @@ class VST1D4<bits<4> op7_4, string OpcodeStr, string Dt>
"\\{$src1, $src2, $src3, $src4\\}, $addr", "",
[/* For disassembly only; pattern left blank */]>;
-def VST1d8T : VST1D3<0b0000, "vld1", "8">;
-def VST1d16T : VST1D3<0b0100, "vld1", "16">;
-def VST1d32T : VST1D3<0b1000, "vld1", "32">;
-//def VST1d64T : VST1D3<0b1100, "vld1", "64">;
-
-def VST1d8Q : VST1D4<0b0000, "vld1", "8">;
-def VST1d16Q : VST1D4<0b0100, "vld1", "16">;
-def VST1d32Q : VST1D4<0b1000, "vld1", "32">;
-//def VST1d64Q : VST1D4<0b1100, "vld1", "64">;
+def VST1d8T : VST1D3<0b0000, "vst1", "8">;
+def VST1d16T : VST1D3<0b0100, "vst1", "16">;
+def VST1d32T : VST1D3<0b1000, "vst1", "32">;
+//def VST1d64T : VST1D3<0b1100, "vst1", "64">;
+
+def VST1d8Q : VST1D4<0b0000, "vst1", "8">;
+def VST1d16Q : VST1D4<0b0100, "vst1", "16">;
+def VST1d32Q : VST1D4<0b1000, "vst1", "32">;
+//def VST1d64Q : VST1D4<0b1100, "vst1", "64">;
let mayStore = 1, hasExtraSrcRegAllocReq = 1 in {