Remove unused variable.
[oota-llvm.git] / lib / CodeGen / InterferenceCache.h
index 4df0a9e5c393e65463a72af3d193434b0957ceab..437f9848b03121219de2433162813cce273f1a8f 100644 (file)
@@ -21,7 +21,6 @@ namespace llvm {
 class InterferenceCache {
   const TargetRegisterInfo *TRI;
   LiveIntervalUnion *LIUArray;
-  SlotIndexes *Indexes;
   MachineFunction *MF;
 
   /// BlockInterference - information about the interference in a single basic
@@ -124,7 +123,7 @@ class InterferenceCache {
   Entry *get(unsigned PhysReg);
 
 public:
-  InterferenceCache() : TRI(0), LIUArray(0), Indexes(0), MF(0), RoundRobin(0) {}
+  InterferenceCache() : TRI(0), LIUArray(0), MF(0), RoundRobin(0) {}
 
   /// init - Prepare cache for a new function.
   void init(MachineFunction*, LiveIntervalUnion*, SlotIndexes*,