mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-03 09:21:02 +00:00
Remove two arguments that are never specified
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4348 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5638bf973f
commit
2f305989b3
@ -54,7 +54,6 @@ typedef int OpCodeMask;
|
||||
//
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
|
||||
class MachineOperand {
|
||||
public:
|
||||
enum MachineOperandType {
|
||||
@ -326,8 +325,7 @@ public:
|
||||
void SetMachineOperandConst(unsigned i,
|
||||
MachineOperand::MachineOperandType operandType,
|
||||
int64_t intValue);
|
||||
void SetMachineOperandReg(unsigned i, int regNum, bool isDef=false,
|
||||
bool isDefAndUse=false, bool isCCReg=false);
|
||||
void SetMachineOperandReg(unsigned i, int regNum, bool isDef=false);
|
||||
|
||||
unsigned substituteValue(const Value* oldVal, Value* newVal,
|
||||
bool defsOnly = true);
|
||||
|
@ -82,22 +82,16 @@ MachineInstr::SetMachineOperandConst(unsigned i,
|
||||
void
|
||||
MachineInstr::SetMachineOperandReg(unsigned i,
|
||||
int regNum,
|
||||
bool isdef,
|
||||
bool isDefAndUse,
|
||||
bool isCCReg)
|
||||
{
|
||||
bool isdef) {
|
||||
assert(i < operands.size());
|
||||
|
||||
operands[i].opType =
|
||||
isCCReg? MachineOperand::MO_CCRegister : MachineOperand::MO_MachineRegister;
|
||||
operands[i].opType = MachineOperand::MO_MachineRegister;
|
||||
operands[i].value = NULL;
|
||||
operands[i].regNum = regNum;
|
||||
operands[i].flags = 0;
|
||||
|
||||
if (isdef || TargetInstrDescriptors[opCode].resultPos == (int) i)
|
||||
operands[i].markDef();
|
||||
if (isDefAndUse)
|
||||
operands[i].markDefAndUse();
|
||||
insertUsedReg(regNum);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user