1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

Oops. Missed the isel half of this. revert while I sort that out.

llvm-svn: 144431
This commit is contained in:
Jim Grosbach 2011-11-11 23:51:31 +00:00
parent 13af5276a1
commit 7fccd540c9

View File

@ -1238,11 +1238,12 @@ class VST1D<bits<4> op7_4, string Dt>
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">;