[llvm-commits] [llvm] r144431 - /llvm/trunk/lib/Target/ARM/ARMInstrNEON.td

Jim Grosbach grosbach at apple.com
Fri Nov 11 15:51:31 PST 2011


Author: grosbach
Date: Fri Nov 11 17:51:31 2011
New Revision: 144431

URL: http://llvm.org/viewvc/llvm-project?rev=144431&view=rev
Log:
Oops. Missed the isel half of this. revert while I sort that out.

Modified:
    llvm/trunk/lib/Target/ARM/ARMInstrNEON.td

Modified: llvm/trunk/lib/Target/ARM/ARMInstrNEON.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMInstrNEON.td?rev=144431&r1=144430&r2=144431&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMInstrNEON.td (original)
+++ llvm/trunk/lib/Target/ARM/ARMInstrNEON.td Fri Nov 11 17:51:31 2011
@@ -1238,11 +1238,12 @@
   let DecoderMethod = "DecodeVSTInstruction";
 }
 class VST1Q<bits<4> op7_4, string Dt>
-  : NLdSt<0,0b00,0b1010,op7_4, (outs), (ins VecListTwoD:$Vd, addrmode6:$Rn),
-          IIC_VST1x2, "vst1", Dt, "$Vd, $Rn", "", []> {
+  : NLdSt<0,0b00,0b1010,op7_4, (outs),
+          (ins addrmode6:$Rn, DPR:$Vd, DPR:$src2), IIC_VST1x2,
+          "vst1", Dt, "\\{$Vd, $src2\\}, $Rn", "", []> {
   let Rm = 0b1111;
   let Inst{5-4} = Rn{5-4};
-  let DecoderMethod = "DecodeVLDInstruction";
+  let DecoderMethod = "DecodeVSTInstruction";
 }
 
 def  VST1d8   : VST1D<{0,0,0,?}, "8">;





More information about the llvm-commits mailing list