aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/MachineInstr.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-25 06:17:51 +0000
committerChris Lattner <sabre@nondot.org>2002-07-25 06:17:51 +0000
commit0c0edf8afc35a42b15a24ebb5fa5f3fc674290ae (patch)
treeed8c32c0631b43d63d36b406b9c02baffd63f2b9 /lib/CodeGen/MachineInstr.cpp
parentbcafccebdbe59cdb888d5a6dc844dea998e02f5b (diff)
*** empty log message ***
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3075 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineInstr.cpp')
-rw-r--r--lib/CodeGen/MachineInstr.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp
index 4fc3730658..124c28a2d9 100644
--- a/lib/CodeGen/MachineInstr.cpp
+++ b/lib/CodeGen/MachineInstr.cpp
@@ -44,8 +44,8 @@ void
MachineInstr::SetMachineOperandVal(unsigned int i,
MachineOperand::MachineOperandType opType,
Value* _val,
- bool isdef=false,
- bool isDefAndUse=false)
+ bool isdef,
+ bool isDefAndUse)
{
assert(i < operands.size());
operands[i].Initialize(opType, _val);
@@ -69,9 +69,9 @@ MachineInstr::SetMachineOperandConst(unsigned int i,
void
MachineInstr::SetMachineOperandReg(unsigned int i,
int regNum,
- bool isdef=false,
- bool isDefAndUse=false,
- bool isCCReg=false)
+ bool isdef,
+ bool isDefAndUse,
+ bool isCCReg)
{
assert(i < operands.size());
operands[i].InitializeReg(regNum, isCCReg);