mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-16 11:05:54 +00:00
Add missing explicit writeback operand to tSTMIA_UPD.
rdar://10014745 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138457 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3e74d6fdd2
commit
f95aaf951b
@ -726,9 +726,10 @@ def tLDMIA_UPD :
|
||||
|
||||
// There is no non-writeback version of STM for Thumb.
|
||||
let mayStore = 1, hasExtraSrcRegAllocReq = 1 in
|
||||
def tSTMIA_UPD : T1I<(outs),
|
||||
(ins tGPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
IIC_iStore_mu, "stm${p}\t$Rn!, $regs", []>,
|
||||
def tSTMIA_UPD : Thumb1I<(outs GPR:$wb),
|
||||
(ins tGPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
AddrModeNone, 2, IIC_iStore_mu,
|
||||
"stm${p}\t$Rn!, $regs", "$Rn = $wb", []>,
|
||||
T1Encoding<{1,1,0,0,0,?}> {
|
||||
bits<3> Rn;
|
||||
bits<8> regs;
|
||||
|
@ -3152,7 +3152,7 @@ validateInstruction(MCInst &Inst,
|
||||
}
|
||||
case ARM::tSTMIA_UPD: {
|
||||
bool listContainsBase;
|
||||
if (checkLowRegisterList(Inst, 3, 0, 0, listContainsBase))
|
||||
if (checkLowRegisterList(Inst, 4, 0, 0, listContainsBase))
|
||||
return Error(Operands[4]->getStartLoc(),
|
||||
"registers must be in range r0-r7");
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user