mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-26 05:25:47 +00:00
Be more lenient on tied operand matching for MUL.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138124 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -2382,16 +2382,23 @@ cvtThumbMultiply(MCInst &Inst, unsigned Opcode,
|
|||||||
// The second source operand must be the same register as the destination
|
// The second source operand must be the same register as the destination
|
||||||
// operand.
|
// operand.
|
||||||
if (Operands.size() == 6 &&
|
if (Operands.size() == 6 &&
|
||||||
((ARMOperand*)Operands[3])->getReg() !=
|
(((ARMOperand*)Operands[3])->getReg() !=
|
||||||
((ARMOperand*)Operands[5])->getReg()) {
|
((ARMOperand*)Operands[5])->getReg()) &&
|
||||||
|
(((ARMOperand*)Operands[3])->getReg() !=
|
||||||
|
((ARMOperand*)Operands[4])->getReg())) {
|
||||||
Error(Operands[3]->getStartLoc(),
|
Error(Operands[3]->getStartLoc(),
|
||||||
"destination register must match second source register");
|
"destination register must match source register");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
((ARMOperand*)Operands[3])->addRegOperands(Inst, 1);
|
((ARMOperand*)Operands[3])->addRegOperands(Inst, 1);
|
||||||
((ARMOperand*)Operands[1])->addCCOutOperands(Inst, 1);
|
((ARMOperand*)Operands[1])->addCCOutOperands(Inst, 1);
|
||||||
((ARMOperand*)Operands[4])->addRegOperands(Inst, 1);
|
((ARMOperand*)Operands[4])->addRegOperands(Inst, 1);
|
||||||
Inst.addOperand(Inst.getOperand(0));
|
// If we have a three-operand form, use that, else the second source operand
|
||||||
|
// is just the destination operand again.
|
||||||
|
if (Operands.size() == 6)
|
||||||
|
((ARMOperand*)Operands[5])->addRegOperands(Inst, 1);
|
||||||
|
else
|
||||||
|
Inst.addOperand(Inst.getOperand(0));
|
||||||
((ARMOperand*)Operands[2])->addCondCodeOperands(Inst, 2);
|
((ARMOperand*)Operands[2])->addCondCodeOperands(Inst, 2);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
@@ -65,6 +65,6 @@ error: invalid operand for instruction
|
|||||||
|
|
||||||
@ Mismatched source/destination operands for MUL instruction.
|
@ Mismatched source/destination operands for MUL instruction.
|
||||||
muls r1, r2, r3
|
muls r1, r2, r3
|
||||||
@ CHECK-ERRORS: error: destination register must match second source register
|
@ CHECK-ERRORS: error: destination register must match source register
|
||||||
@ CHECK-ERRORS: muls r1, r2, r3
|
@ CHECK-ERRORS: muls r1, r2, r3
|
||||||
@ CHECK-ERRORS: ^
|
@ CHECK-ERRORS: ^
|
||||||
|
Reference in New Issue
Block a user