diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-28 21:02:40 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-28 21:02:40 +0000 |
commit | b98a53f201fd3652f4b7e37d1f2cb3b9b0775d45 (patch) | |
tree | 39ccfbf459968b2d14056d349f8818e80416f3da /include/llvm/CodeGen/MachineInstr.h | |
parent | 7279122e668816bed0d4f38d3392bbab0140fad0 (diff) |
Remove more default arguments that are never used
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4358 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineInstr.h')
-rw-r--r-- | include/llvm/CodeGen/MachineInstr.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h index 5c5207fb56..8b7f0643c2 100644 --- a/include/llvm/CodeGen/MachineInstr.h +++ b/include/llvm/CodeGen/MachineInstr.h @@ -239,8 +239,7 @@ public: // Support to rewrite a machine instruction in place: for now, simply // replace() and then set new operands with Set.*Operand methods below. // - void replace(MachineOpCode Opcode, unsigned numOperands, - OpCodeMask Mask = 0x0); + void replace(MachineOpCode Opcode, unsigned numOperands); // // The opcode. |