[llvm-commits] CVS: llvm/include/llvm/CodeGen/MachineInstr.h

Alkis Evlogimenos alkis at cs.uiuc.edu
Mon Feb 2 17:10:07 PST 2004


Changes in directory llvm/include/llvm/CodeGen:

MachineInstr.h updated: 1.119 -> 1.120

---
Log message:

Revert changes. Will implement this using a different set of primitives


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

Index: llvm/include/llvm/CodeGen/MachineInstr.h
diff -u llvm/include/llvm/CodeGen/MachineInstr.h:1.119 llvm/include/llvm/CodeGen/MachineInstr.h:1.120
--- llvm/include/llvm/CodeGen/MachineInstr.h:1.119	Mon Feb  2 15:55:18 2004
+++ llvm/include/llvm/CodeGen/MachineInstr.h	Mon Feb  2 17:08:57 2004
@@ -288,9 +288,6 @@
   bool          isHiBits64      () const { return flags & HIFLAG64; }
   bool          isLoBits64      () const { return flags & LOFLAG64; }
 
-  MachineOperand& setUse      () { flags |= USEFLAG; return *this; }
-  MachineOperand& setDef      () { flags |= DEFFLAG; return *this; }
-
   // used to check if a machine register has been allocated to this operand
   bool hasAllocatedReg() const {
     return (regNum >= 0 &&





More information about the llvm-commits mailing list