From: Johnny Chen Date: Wed, 24 Feb 2010 18:00:40 +0000 (+0000) Subject: Fixed typo of opcodestr, should be "vst1", not "vld1". X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=39b03163a7f639b1c75c348bec425c35dc89eba4;p=oota-llvm.git 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 --- diff --git a/lib/Target/ARM/ARMInstrNEON.td b/lib/Target/ARM/ARMInstrNEON.td index 91210aa4497..b3350e67672 100644 --- a/lib/Target/ARM/ARMInstrNEON.td +++ b/lib/Target/ARM/ARMInstrNEON.td @@ -424,15 +424,15 @@ class VST1D4 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 {