Delete an unused member variable.

llvm-svn: 86160
This commit is contained in:
Dan Gohman 2009-11-05 19:33:15 +00:00
parent e3a1706e33
commit 885c46e387
1 changed files with 0 additions and 2 deletions

View 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.