diff options
author | Tobias Grosser <tobias@grosser.es> | 2014-01-13 22:29:56 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2014-01-13 22:29:56 +0000 |
commit | 42aff30dbc698f33a0a6be143ea77810aa8abb65 (patch) | |
tree | 27bd9f14a25a6789587729bf858cde90659fc113 /polly/lib/Analysis/ScopDetection.cpp | |
parent | 0c306ba08c69480f2f196ea021e2f89aae1d35ef (diff) | |
download | bcm5719-llvm-42aff30dbc698f33a0a6be143ea77810aa8abb65.tar.gz bcm5719-llvm-42aff30dbc698f33a0a6be143ea77810aa8abb65.zip |
Adapt to DomTree changes in r199104
llvm-svn: 199157
Diffstat (limited to 'polly/lib/Analysis/ScopDetection.cpp')
-rw-r--r-- | polly/lib/Analysis/ScopDetection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/polly/lib/Analysis/ScopDetection.cpp b/polly/lib/Analysis/ScopDetection.cpp index 50b7f1b5948..4247e279749 100644 --- a/polly/lib/Analysis/ScopDetection.cpp +++ b/polly/lib/Analysis/ScopDetection.cpp @@ -751,7 +751,7 @@ void polly::ScopDetection::verifyAnalysis() const { } void ScopDetection::getAnalysisUsage(AnalysisUsage &AU) const { - AU.addRequired<DominatorTree>(); + AU.addRequired<DominatorTreeWrapperPass>(); AU.addRequired<PostDominatorTree>(); AU.addRequired<LoopInfo>(); AU.addRequired<ScalarEvolution>(); @@ -784,7 +784,7 @@ INITIALIZE_PASS_BEGIN(ScopDetection, "polly-detect", "Polly - Detect static control parts (SCoPs)", false, false); INITIALIZE_AG_DEPENDENCY(AliasAnalysis); -INITIALIZE_PASS_DEPENDENCY(DominatorTree); +INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass); INITIALIZE_PASS_DEPENDENCY(LoopInfo); INITIALIZE_PASS_DEPENDENCY(PostDominatorTree); INITIALIZE_PASS_DEPENDENCY(RegionInfo); |