diff options
author | Sean Silva <chisophugis@gmail.com> | 2016-08-09 00:28:38 +0000 |
---|---|---|
committer | Sean Silva <chisophugis@gmail.com> | 2016-08-09 00:28:38 +0000 |
commit | fd03ac6a0c7e2092ae9c0a05f229a1a2dd4608ae (patch) | |
tree | 04a054e45872e5025f52ff4074e14ddcbbedba5c /llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp | |
parent | 36e0d01e13b32bf318139fd8c43849af7a0e13cc (diff) | |
download | bcm5719-llvm-fd03ac6a0c7e2092ae9c0a05f229a1a2dd4608ae.tar.gz bcm5719-llvm-fd03ac6a0c7e2092ae9c0a05f229a1a2dd4608ae.zip |
Consistently use ModuleAnalysisManager
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: 278078
Diffstat (limited to 'llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp')
-rw-r--r-- | llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp b/llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp index ab2d2bd8b02..2ef299d9a2f 100644 --- a/llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp +++ b/llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp @@ -34,7 +34,7 @@ static bool inferAllPrototypeAttributes(Module &M, } PreservedAnalyses InferFunctionAttrsPass::run(Module &M, - AnalysisManager<Module> &AM) { + ModuleAnalysisManager &AM) { auto &TLI = AM.getResult<TargetLibraryAnalysis>(M); if (!inferAllPrototypeAttributes(M, TLI)) |