Delete an unused member variable.
[oota-llvm.git] / include / llvm / CodeGen / LiveVariables.h
index 7ba901fc28a4ebde878ecb19ad570ac2b9b94cc4..71062a2a51965594c147955fa742e37d95b99c15 100644 (file)
@@ -85,17 +85,11 @@ public:
     ///
     SparseBitVector<> AliveBlocks;
 
-    /// NumUses - Number of uses of this register across the entire function.
-    ///
-    unsigned NumUses;
-
     /// Kills - List of MachineInstruction's which are the last use of this
     /// virtual register (kill it) in their basic block.
     ///
     std::vector<MachineInstr*> Kills;
 
-    VarInfo() : NumUses(0) {}
-
     /// removeKill - Delete a kill corresponding to the specified
     /// machine instruction. Returns true if there was a kill
     /// corresponding to this instruction, false otherwise.