Delete an unused member variable.
authorDan Gohman <gohman@apple.com>
Thu, 5 Nov 2009 19:33:15 +0000 (19:33 +0000)
committerDan Gohman <gohman@apple.com>
Thu, 5 Nov 2009 19:33:15 +0000 (19:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86160 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/LCSSA.cpp

index 56e662e9dac1922293a0fa3a0a3c8c6a34bd04da..a8813eb1ff6978a26d269b5ae18bd954942b7f21 100644 (file)
@@ -50,7 +50,6 @@ namespace {
     LCSSA() : LoopPass(&ID) {}
 
     // Cached analysis information for the current function.
-    LoopInfo *LI;
     DominatorTree *DT;
     std::vector<BasicBlock*> LoopBlocks;
     PredIteratorCache PredCache;
@@ -121,7 +120,6 @@ static bool BlockDominatesAnExit(BasicBlock *BB,
 bool LCSSA::runOnLoop(Loop *TheLoop, LPPassManager &LPM) {
   L = TheLoop;
   
-  LI = &LPM.getAnalysis<LoopInfo>();
   DT = &getAnalysis<DominatorTree>();
 
   // Get the set of exiting blocks.