[polly] r261886 - Adapt to LLVM head. NFC
Hongbin Zheng via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 25 08:36:09 PST 2016
Author: ether
Date: Thu Feb 25 10:36:09 2016
New Revision: 261886
URL: http://llvm.org/viewvc/llvm-project?rev=261886&view=rev
Log:
Adapt to LLVM head. NFC
Modified:
polly/trunk/lib/CodeGen/CodeGeneration.cpp
polly/trunk/lib/Transform/CodePreparation.cpp
Modified: polly/trunk/lib/CodeGen/CodeGeneration.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/CodeGen/CodeGeneration.cpp?rev=261886&r1=261885&r2=261886&view=diff
==============================================================================
--- polly/trunk/lib/CodeGen/CodeGeneration.cpp (original)
+++ polly/trunk/lib/CodeGen/CodeGeneration.cpp Thu Feb 25 10:36:09 2016
@@ -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>();
Modified: polly/trunk/lib/Transform/CodePreparation.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Transform/CodePreparation.cpp?rev=261886&r1=261885&r2=261886&view=diff
==============================================================================
--- polly/trunk/lib/Transform/CodePreparation.cpp (original)
+++ polly/trunk/lib/Transform/CodePreparation.cpp Thu Feb 25 10:36:09 2016
@@ -70,7 +70,7 @@ void CodePreparation::getAnalysisUsage(A
AU.addPreserved<LoopInfoWrapperPass>();
AU.addPreserved<RegionInfoPass>();
AU.addPreserved<DominatorTreeWrapperPass>();
- AU.addPreserved<DominanceFrontier>();
+ AU.addPreserved<DominanceFrontierWrapperPass>();
}
bool CodePreparation::runOnFunction(Function &F) {
More information about the llvm-commits
mailing list