aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineInstr.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-10-28 19:46:59 +0000
committerChris Lattner <sabre@nondot.org>2002-10-28 19:46:59 +0000
commit2f305989b395a0a8bf00c4b9dc140a6df051245e (patch)
treef449ca258ba41649254889a7ef3dd1e7d33f7e08 /include/llvm/CodeGen/MachineInstr.h
parent5638bf973f92a6653566cf4195ffe30f490fb7a8 (diff)
Remove two arguments that are never specified
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4348 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineInstr.h')
-rw-r--r--include/llvm/CodeGen/MachineInstr.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h
index 8d987acd64..04f07abce6 100644
--- a/include/llvm/CodeGen/MachineInstr.h
+++ b/include/llvm/CodeGen/MachineInstr.h
@@ -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);