mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-07 01:38:26 +00:00
Use the correct variable names so that the encodings will be correct.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119403 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
742bf87efa
commit
3380f6a4d0
@ -1870,9 +1870,9 @@ def : MnemonicAlias<"stm", "stmia">;
|
||||
let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
|
||||
hasExtraDefRegAllocReq = 1, isCodeGenOnly = 1 in
|
||||
def LDMIA_RET : AXI4<(outs GPR:$wb), (ins GPR:$Rn, pred:$p,
|
||||
reglist:$dsts, variable_ops),
|
||||
reglist:$regs, variable_ops),
|
||||
IndexModeUpd, LdStMulFrm, IIC_iLoad_mBr,
|
||||
"ldmia${p}\t$Rn!, $dsts",
|
||||
"ldmia${p}\t$Rn!, $regs",
|
||||
"$Rn = $wb", []> {
|
||||
let Inst{24-23} = 0b01; // Increment After
|
||||
let Inst{21} = 1; // Writeback
|
||||
|
@ -2760,9 +2760,9 @@ let Defs =
|
||||
let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
|
||||
hasExtraDefRegAllocReq = 1, isCodeGenOnly = 1 in
|
||||
def t2LDMIA_RET: T2XIt<(outs GPR:$wb), (ins GPR:$Rn, pred:$p,
|
||||
reglist:$dsts, variable_ops),
|
||||
reglist:$regs, variable_ops),
|
||||
IIC_iLoad_mBr,
|
||||
"ldmia${p}.w\t$Rn!, $dsts",
|
||||
"ldmia${p}.w\t$Rn!, $regs",
|
||||
"$Rn = $wb", []> {
|
||||
bits<4> Rn;
|
||||
bits<16> regs;
|
||||
|
Loading…
x
Reference in New Issue
Block a user