mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-20 16:17:38 +00:00
Rename the redundant MachineOperand::getOperandType() to MachineOperand::getType()
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4331 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -483,9 +483,9 @@ FixConstantOperandsForInstr(Instruction* vmInstr,
|
||||
// Skip the result position, preallocated machine registers, or operands
|
||||
// that cannot be constants (CC regs or PC-relative displacements)
|
||||
if (instrDesc.resultPos == (int) op ||
|
||||
mop.getOperandType() == MachineOperand::MO_MachineRegister ||
|
||||
mop.getOperandType() == MachineOperand::MO_CCRegister ||
|
||||
mop.getOperandType() == MachineOperand::MO_PCRelativeDisp)
|
||||
mop.getType() == MachineOperand::MO_MachineRegister ||
|
||||
mop.getType() == MachineOperand::MO_CCRegister ||
|
||||
mop.getType() == MachineOperand::MO_PCRelativeDisp)
|
||||
continue;
|
||||
|
||||
bool constantThatMustBeLoaded = false;
|
||||
@@ -496,7 +496,7 @@ FixConstantOperandsForInstr(Instruction* vmInstr,
|
||||
MachineOperand::MO_VirtualRegister;
|
||||
|
||||
// Operand may be a virtual register or a compile-time constant
|
||||
if (mop.getOperandType() == MachineOperand::MO_VirtualRegister)
|
||||
if (mop.getType() == MachineOperand::MO_VirtualRegister)
|
||||
{
|
||||
assert(mop.getVRegValue() != NULL);
|
||||
opValue = mop.getVRegValue();
|
||||
@@ -510,10 +510,10 @@ FixConstantOperandsForInstr(Instruction* vmInstr,
|
||||
}
|
||||
else
|
||||
{
|
||||
assert(mop.getOperandType() == MachineOperand::MO_SignExtendedImmed ||
|
||||
mop.getOperandType() == MachineOperand::MO_UnextendedImmed);
|
||||
assert(mop.getType() == MachineOperand::MO_SignExtendedImmed ||
|
||||
mop.getType() == MachineOperand::MO_UnextendedImmed);
|
||||
|
||||
bool isSigned = (mop.getOperandType() ==
|
||||
bool isSigned = (mop.getType() ==
|
||||
MachineOperand::MO_SignExtendedImmed);
|
||||
|
||||
// Bit-selection flags indicate an instruction that is extracting
|
||||
@@ -526,7 +526,7 @@ FixConstantOperandsForInstr(Instruction* vmInstr,
|
||||
opCode, target, (immedPos == (int)op),
|
||||
machineRegNum, immedValue);
|
||||
|
||||
if (opType == mop.getOperandType())
|
||||
if (opType == mop.getType())
|
||||
continue; // no change: this is the most common case
|
||||
|
||||
if (opType == MachineOperand::MO_VirtualRegister)
|
||||
|
||||
Reference in New Issue
Block a user