[polly] r261905 - Adapt to LLVM head, again

Hongbin Zheng via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 25 09:54:42 PST 2016


Author: ether
Date: Thu Feb 25 11:54:42 2016
New Revision: 261905

URL: http://llvm.org/viewvc/llvm-project?rev=261905&view=rev
Log:
Adapt to LLVM head, again

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=261905&r1=261904&r2=261905&view=diff
==============================================================================
--- polly/trunk/lib/CodeGen/CodeGeneration.cpp (original)
+++ polly/trunk/lib/CodeGen/CodeGeneration.cpp Thu Feb 25 11:54:42 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=261905&r1=261904&r2=261905&view=diff
==============================================================================
--- polly/trunk/lib/Transform/CodePreparation.cpp (original)
+++ polly/trunk/lib/Transform/CodePreparation.cpp Thu Feb 25 11:54:42 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