Skip to content

Commit 409b694

Browse files
committed
Specify that the high bit of the alignment field is fixed to 0 on these instructions.
llvm-svn: 143220
1 parent 2fa646d commit 409b694

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Target/ARM/ARMInstrNEON.td

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,15 +389,15 @@ multiclass VLD1D3WB<bits<4> op7_4, string Dt> {
389389
"vld1", Dt, "$Vd, $Rn!",
390390
"$Rn.addr = $wb", []> {
391391
let Rm = 0b1101; // NLdSt will assign to the right encoding bits.
392-
let Inst{5-4} = Rn{5-4};
392+
let Inst{4} = Rn{4};
393393
let DecoderMethod = "DecodeVLDInstruction";
394394
let AsmMatchConverter = "cvtVLDwbFixed";
395395
}
396396
def _register : NLdSt<0,0b10,0b0110,op7_4, (outs VecListThreeD:$Vd, GPR:$wb),
397397
(ins addrmode6:$Rn, rGPR:$Rm), IIC_VLD1x2u,
398398
"vld1", Dt, "$Vd, $Rn, $Rm",
399399
"$Rn.addr = $wb", []> {
400-
let Inst{5-4} = Rn{5-4};
400+
let Inst{4} = Rn{4};
401401
let DecoderMethod = "DecodeVLDInstruction";
402402
let AsmMatchConverter = "cvtVLDwbRegister";
403403
}

0 commit comments

Comments
 (0)