Adapt to LLVM head. NFC

llvm-svn: 261886
This commit is contained in:
Hongbin Zheng
2016-02-25 16:36:09 +00:00
parent 62d472507e
commit f4e35f9cb9
2 changed files with 2 additions and 2 deletions

View File

@@ -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>();

View File

@@ -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) {