mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
ARM: Tweak tADDrSP definition for consistent operand order.
Make the operand order of the instruction match that of the asm syntax. llvm-svn: 155747
This commit is contained in:
parent
7fe1fbbe81
commit
e7265765f6
@ -363,8 +363,8 @@ def : tInstAlias<"sub${p} sp, sp, $imm",
|
||||
(tSUBspi SP, t_imm0_508s4:$imm, pred:$p)>;
|
||||
|
||||
// ADD <Rm>, sp
|
||||
def tADDrSP : T1pIt<(outs GPR:$Rdn), (ins GPR:$Rn, GPRsp:$sp), IIC_iALUr,
|
||||
"add", "\t$Rdn, $sp, $Rn", []>,
|
||||
def tADDrSP : T1pIt<(outs GPR:$Rdn), (ins GPRsp:$sp, GPR:$Rn), IIC_iALUr,
|
||||
"add", "\t$Rdn, $sp, $Rn", []>,
|
||||
T1Special<{0,0,?,?}> {
|
||||
// A8.6.9 Encoding T1
|
||||
bits<4> Rdn;
|
||||
|
@ -3296,9 +3296,9 @@ static DecodeStatus DecodeThumbAddSPReg(MCInst &Inst, uint16_t Insn,
|
||||
|
||||
if (!Check(S, DecodeGPRRegisterClass(Inst, Rdm, Address, Decoder)))
|
||||
return MCDisassembler::Fail;
|
||||
Inst.addOperand(MCOperand::CreateReg(ARM::SP));
|
||||
if (!Check(S, DecodeGPRRegisterClass(Inst, Rdm, Address, Decoder)))
|
||||
return MCDisassembler::Fail;
|
||||
Inst.addOperand(MCOperand::CreateReg(ARM::SP));
|
||||
} else if (Inst.getOpcode() == ARM::tADDspr) {
|
||||
unsigned Rm = fieldFromInstruction16(Insn, 3, 4);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user