From: Devang Patel Date: Wed, 15 Aug 2007 03:34:53 +0000 (+0000) Subject: Dominance frontier is now required. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7375bb9c8c82115dd401d67f0baaf30d6c481bd0;p=oota-llvm.git Dominance frontier is now required. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41096 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/LoopIndexSplit.cpp b/lib/Transforms/Scalar/LoopIndexSplit.cpp index 975efe60302..565e00c8950 100644 --- a/lib/Transforms/Scalar/LoopIndexSplit.cpp +++ b/lib/Transforms/Scalar/LoopIndexSplit.cpp @@ -162,7 +162,7 @@ bool LoopIndexSplit::runOnLoop(Loop *IncomingLoop, LPPassManager &LPM_Ref) { SE = &getAnalysis(); DT = &getAnalysis(); LI = &getAnalysis(); - DF = getAnalysisToUpdate(); + DF = &getAnalysis(); initialize();