[polly] r230896 - [Cleanup] Remove unused passes
Johannes Doerfert
doerfert at cs.uni-saarland.de
Sun Mar 1 10:38:35 PST 2015
Author: jdoerfert
Date: Sun Mar 1 12:38:35 2015
New Revision: 230896
URL: http://llvm.org/viewvc/llvm-project?rev=230896&view=rev
Log:
[Cleanup] Remove unused passes
Modified:
polly/trunk/lib/Analysis/ScopDetection.cpp
Modified: polly/trunk/lib/Analysis/ScopDetection.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Analysis/ScopDetection.cpp?rev=230896&r1=230895&r2=230896&view=diff
==============================================================================
--- polly/trunk/lib/Analysis/ScopDetection.cpp (original)
+++ polly/trunk/lib/Analysis/ScopDetection.cpp Sun Mar 1 12:38:35 2015
@@ -1014,8 +1014,6 @@ void polly::ScopDetection::verifyAnalysi
}
void ScopDetection::getAnalysisUsage(AnalysisUsage &AU) const {
- AU.addRequired<DominatorTreeWrapperPass>();
- AU.addRequired<PostDominatorTree>();
AU.addRequired<LoopInfoWrapperPass>();
AU.addRequired<ScalarEvolution>();
// We also need AA and RegionInfo when we are verifying analysis.
@@ -1047,9 +1045,7 @@ INITIALIZE_PASS_BEGIN(ScopDetection, "po
"Polly - Detect static control parts (SCoPs)", false,
false);
INITIALIZE_AG_DEPENDENCY(AliasAnalysis);
-INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass);
INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass);
-INITIALIZE_PASS_DEPENDENCY(PostDominatorTree);
INITIALIZE_PASS_DEPENDENCY(RegionInfoPass);
INITIALIZE_PASS_DEPENDENCY(ScalarEvolution);
INITIALIZE_PASS_END(ScopDetection, "polly-detect",
More information about the llvm-commits
mailing list