Fix comment.
[oota-llvm.git] / include / llvm / CodeGen / LiveVariables.h
index 786a1fdc7060a3cf72b883b5023f6436a5cfcc1c..d98ad347354de0bc73241a79a2db1aa2b77de64e 100644 (file)
@@ -79,6 +79,10 @@ public:
     ///
     BitVector AliveBlocks;
 
+    /// UsedBlocks - Set of blocks of which this value is actually used. This
+    /// is a bit set which uses the basic block number as an index.
+    BitVector UsedBlocks;
+
     /// Kills - List of MachineInstruction's which are the last use of this
     /// virtual register (kill it) in their basic block.
     ///
@@ -116,6 +120,8 @@ private:
   BitVector ReservedRegisters;
 
 private:   // Intermediate data structures
+  MachineFunction *MF;
+
   const MRegisterInfo *RegInfo;
 
   MachineInstr **PhysRegInfo;