diff options
| author | Chris Lattner <sabre@nondot.org> | 2002-07-25 06:17:51 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2002-07-25 06:17:51 +0000 |
| commit | 10073a9080498f8ce8ad87b425d8bbb5b6536b67 (patch) | |
| tree | 10569e0dce9be5b0fc6bb11e55babf9b9f2c170f /llvm/lib/CodeGen/MachineInstr.cpp | |
| parent | e680139c346e2e1e09f4574995cca1874abe7f28 (diff) | |
| download | bcm5719-llvm-10073a9080498f8ce8ad87b425d8bbb5b6536b67.tar.gz bcm5719-llvm-10073a9080498f8ce8ad87b425d8bbb5b6536b67.zip | |
*** empty log message ***
llvm-svn: 3075
Diffstat (limited to 'llvm/lib/CodeGen/MachineInstr.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/MachineInstr.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/MachineInstr.cpp b/llvm/lib/CodeGen/MachineInstr.cpp index 4fc37306588..124c28a2d97 100644 --- a/llvm/lib/CodeGen/MachineInstr.cpp +++ b/llvm/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); |

