mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +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:
@@ -101,7 +101,7 @@ public:
|
||||
// Accessor methods. Caller is responsible for checking the
|
||||
// operand type before invoking the corresponding accessor.
|
||||
//
|
||||
MachineOperandType getOperandType() const { return opType; }
|
||||
MachineOperandType getType() const { return opType; }
|
||||
|
||||
inline Value* getVRegValue () const {
|
||||
assert(opType == MO_VirtualRegister || opType == MO_CCRegister ||
|
||||
@@ -248,7 +248,7 @@ public:
|
||||
}
|
||||
|
||||
MachineOperand::MachineOperandType getOperandType(unsigned i) const {
|
||||
return getOperand(i).getOperandType();
|
||||
return getOperand(i).getType();
|
||||
}
|
||||
|
||||
bool operandIsDefined(unsigned i) const {
|
||||
|
Reference in New Issue
Block a user