summaryrefslogtreecommitdiffstats
path: root/polly/lib
diff options
context:
space:
mode:
authorHongbin Zheng <etherzhhb@gmail.com>2016-02-25 16:36:09 +0000
committerHongbin Zheng <etherzhhb@gmail.com>2016-02-25 16:36:09 +0000
commitf4e35f9cb9f8601ae52688be5085c35de9f35a97 (patch)
treeb84c23212d65de7cc8244b02cd8c466f7abeaf7d /polly/lib
parent62d472507e515e304b0fce463812dcb20370c142 (diff)
downloadbcm5719-llvm-f4e35f9cb9f8601ae52688be5085c35de9f35a97.tar.gz
bcm5719-llvm-f4e35f9cb9f8601ae52688be5085c35de9f35a97.zip
Adapt to LLVM head. NFC
llvm-svn: 261886
Diffstat (limited to 'polly/lib')
-rw-r--r--polly/lib/CodeGen/CodeGeneration.cpp2
-rw-r--r--polly/lib/Transform/CodePreparation.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/polly/lib/CodeGen/CodeGeneration.cpp b/polly/lib/CodeGen/CodeGeneration.cpp
index 0a52863d94e..d66ff944fc7 100644
--- a/polly/lib/CodeGen/CodeGeneration.cpp
+++ b/polly/lib/CodeGen/CodeGeneration.cpp
@@ -206,7 +206,7 @@ public:
AU.addPreserved<LoopInfoWrapperPass>();
AU.addPreserved<DominatorTreeWrapperPass>();
AU.addPreserved<GlobalsAAWrapperPass>();
- AU.addPreserved<PostDominatorTree>();
+ AU.addPreserved<PostDominatorTreeWrapperPass>();
AU.addPreserved<IslAstInfo>();
AU.addPreserved<ScopDetection>();
AU.addPreserved<ScalarEvolutionWrapperPass>();
diff --git a/polly/lib/Transform/CodePreparation.cpp b/polly/lib/Transform/CodePreparation.cpp
index bebaab147d4..d9d9247861d 100644
--- a/polly/lib/Transform/CodePreparation.cpp
+++ b/polly/lib/Transform/CodePreparation.cpp
@@ -70,7 +70,7 @@ void CodePreparation::getAnalysisUsage(AnalysisUsage &AU) const {
AU.addPreserved<LoopInfoWrapperPass>();
AU.addPreserved<RegionInfoPass>();
AU.addPreserved<DominatorTreeWrapperPass>();
- AU.addPreserved<DominanceFrontier>();
+ AU.addPreserved<DominanceFrontierWrapperPass>();
}
bool CodePreparation::runOnFunction(Function &F) {
OpenPOWER on IntegriCloud