[llvm-commits] CVS: llvm/include/llvm/CodeGen/MachineInstr.h
Chris Lattner
lattner at cs.uiuc.edu
Mon Oct 28 15:01:01 PST 2002
Changes in directory llvm/include/llvm/CodeGen:
MachineInstr.h updated: 1.76 -> 1.77
---
Log message:
Remove default operands that are never used
---
Diffs of the changes:
Index: llvm/include/llvm/CodeGen/MachineInstr.h
diff -u llvm/include/llvm/CodeGen/MachineInstr.h:1.76 llvm/include/llvm/CodeGen/MachineInstr.h:1.77
--- llvm/include/llvm/CodeGen/MachineInstr.h:1.76 Mon Oct 28 14:48:33 2002
+++ llvm/include/llvm/CodeGen/MachineInstr.h Mon Oct 28 14:59:47 2002
@@ -225,8 +225,8 @@
// 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
More information about the llvm-commits
mailing list