diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-28 20:59:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-28 20:59:49 +0000 |
commit | 7279122e668816bed0d4f38d3392bbab0140fad0 (patch) | |
tree | b99d7894853af8e67106c2e591aeb901f6c5ba32 /include/llvm/CodeGen/MachineInstr.h | |
parent | 413746e9833d97a8b463ef6a788aa326cf3829a2 (diff) |
Remove default operands that are never used
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4357 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineInstr.h')
-rw-r--r-- | include/llvm/CodeGen/MachineInstr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h index b5bb25a4b3..5c5207fb56 100644 --- a/include/llvm/CodeGen/MachineInstr.h +++ b/include/llvm/CodeGen/MachineInstr.h @@ -225,8 +225,8 @@ class MachineInstr : public Annotable, // MachineInstrs are annotable // OperandComplete - Return true if it's illegal to add a new operand bool OperandsComplete() const; public: - MachineInstr(MachineOpCode Opcode, OpCodeMask OpcodeMask = 0); - MachineInstr(MachineOpCode Opcode, unsigned numOperands, OpCodeMask Mask = 0); + MachineInstr(MachineOpCode Opcode); + MachineInstr(MachineOpCode Opcode, unsigned numOperands); /// MachineInstr ctor - This constructor only does a _reserve_ of the /// operands, not a resize for them. It is expected that if you use this that |