[llvm-commits] CVS: llvm/lib/CodeGen/MachineInstr.cpp

Chris Lattner lattner at cs.uiuc.edu
Thu Feb 12 10:06:15 PST 2004


Changes in directory llvm/lib/CodeGen:

MachineInstr.cpp updated: 1.84 -> 1.85

---
Log message:

This field is never read


---
Diffs of the changes:  (+0 -3)

Index: llvm/lib/CodeGen/MachineInstr.cpp
diff -u llvm/lib/CodeGen/MachineInstr.cpp:1.84 llvm/lib/CodeGen/MachineInstr.cpp:1.85
--- llvm/lib/CodeGen/MachineInstr.cpp:1.84	Wed Feb  4 16:17:40 2004
+++ llvm/lib/CodeGen/MachineInstr.cpp	Thu Feb 12 10:04:49 2004
@@ -30,7 +30,6 @@
 // Constructor for instructions with variable #operands
 MachineInstr::MachineInstr(MachineOpCode OpCode, unsigned  numOperands)
   : opCode(OpCode),
-    opCodeFlags(0),
     operands(numOperands, MachineOperand()),
     numImplicitRefs(0)
 {
@@ -44,7 +43,6 @@
 MachineInstr::MachineInstr(MachineOpCode Opcode, unsigned numOperands,
                            bool XX, bool YY)
   : opCode(Opcode),
-    opCodeFlags(0),
     numImplicitRefs(0)
 {
   operands.reserve(numOperands);
@@ -56,7 +54,6 @@
 MachineInstr::MachineInstr(MachineBasicBlock *MBB, MachineOpCode Opcode,
                            unsigned numOperands)
   : opCode(Opcode),
-    opCodeFlags(0),
     numImplicitRefs(0)
 {
   assert(MBB && "Cannot use inserting ctor with null basic block!");





More information about the llvm-commits mailing list