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/GVN.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/GVN.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/GVN.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/GVN.cpp b/llvm/lib/Transforms/Scalar/GVN.cpp index 6f2ce243f5f..a108ce8d292 100644 --- a/llvm/lib/Transforms/Scalar/GVN.cpp +++ b/llvm/lib/Transforms/Scalar/GVN.cpp @@ -583,7 +583,7 @@ void GVN::ValueTable::verifyRemoved(const Value *V) const { // GVN Pass //===----------------------------------------------------------------------===// -PreservedAnalyses GVN::run(Function &F, AnalysisManager<Function> &AM) { +PreservedAnalyses GVN::run(Function &F, FunctionAnalysisManager &AM) { // FIXME: The order of evaluation of these 'getResult' calls is very // significant! Re-ordering these variables will cause GVN when run alone to // be less effective! We should fix memdep and basic-aa to not exhibit this |