diff options
author | Sean Silva <chisophugis@gmail.com> | 2016-08-09 00:28:15 +0000 |
---|---|---|
committer | Sean Silva <chisophugis@gmail.com> | 2016-08-09 00:28:15 +0000 |
commit | 36e0d01e13b32bf318139fd8c43849af7a0e13cc (patch) | |
tree | 2f6750af80a017d71ccef78a8cdbf0e7062ba64d /llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp | |
parent | b9a77f827dcfa5fb06b3be105c381c6b0b641b29 (diff) | |
download | bcm5719-llvm-36e0d01e13b32bf318139fd8c43849af7a0e13cc.tar.gz bcm5719-llvm-36e0d01e13b32bf318139fd8c43849af7a0e13cc.zip |
Consistently use FunctionAnalysisManager
Besides a general consistently benefit, the extra layer of indirection
allows the mechanical part of https://reviews.llvm.org/D23256 that
requires touching every transformation and analysis to be factored out
cleanly.
Thanks to David for the suggestion.
llvm-svn: 278077
Diffstat (limited to 'llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp b/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp index 2d0a21d2c51..f2723bd7af8 100644 --- a/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp +++ b/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp @@ -187,7 +187,7 @@ SimplifyCFGPass::SimplifyCFGPass(int BonusInstThreshold) : BonusInstThreshold(BonusInstThreshold) {} PreservedAnalyses SimplifyCFGPass::run(Function &F, - AnalysisManager<Function> &AM) { + FunctionAnalysisManager &AM) { auto &TTI = AM.getResult<TargetIRAnalysis>(F); auto &AC = AM.getResult<AssumptionAnalysis>(F); |