mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
ARM expansion of pre-indexed store pseudos should maintain memoperands.
Partial fix for rdar://9945172. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137513 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
746c882538
commit
4dfe220ad5
@ -5300,13 +5300,15 @@ ARMTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
|
||||
if (isSub)
|
||||
Offset = -Offset;
|
||||
|
||||
MachineMemOperand *MMO = *MI->memoperands_begin();
|
||||
MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(NewOpc))
|
||||
.addOperand(MI->getOperand(0)) // Rn_wb
|
||||
.addOperand(MI->getOperand(1)) // Rt
|
||||
.addOperand(MI->getOperand(2)) // Rn
|
||||
.addImm(Offset) // offset (skip GPR==zero_reg)
|
||||
.addOperand(MI->getOperand(5)) // pred
|
||||
.addOperand(MI->getOperand(6));
|
||||
.addOperand(MI->getOperand(6))
|
||||
.addMemOperand(MMO);
|
||||
MI->eraseFromParent();
|
||||
return BB;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user