Remove unused variable.
authorJakob Stoklund Olesen <stoklund@2pi.dk>
Fri, 10 Feb 2012 18:52:15 +0000 (18:52 +0000)
committerJakob Stoklund Olesen <stoklund@2pi.dk>
Fri, 10 Feb 2012 18:52:15 +0000 (18:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150258 91177308-0d34-0410-b5e6-96231b3b80d8

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*,