diff --git a/lib/Analysis/LoopDepth.cpp b/lib/Analysis/LoopDepth.cpp index e265837a476..03b81b93122 100644 --- a/lib/Analysis/LoopDepth.cpp +++ b/lib/Analysis/LoopDepth.cpp @@ -31,15 +31,3 @@ void cfg::LoopDepthCalculator::getAnalysisUsageInfo(Pass::AnalysisSet &Requires, Requires.push_back(LoopInfo::ID); } -#if 1 /// FIXME, REMOVE EVENTUALLY -#include "llvm/PassManager.h" - -cfg::LoopDepthCalculator::LoopDepthCalculator(Method *M) { - PassManagerT PassMgr; - LoopInfo *LI = new LoopInfo(LoopInfo::ID); - PassMgr.add(LI); - PassMgr.run(M); - calculate(M, *LI); -} -#endif -