diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2016-02-20 03:46:03 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2016-02-20 03:46:03 +0000 |
commit | 4f846a5f15d579ceeb1fb5f7f2ca75107ae25978 (patch) | |
tree | 93d9cb8d837b89771e42a0ee004f132bc008191f /llvm/lib/Analysis/Analysis.cpp | |
parent | 2ac7ee7139a0a06526126d18e549c724b96e3ee8 (diff) | |
download | bcm5719-llvm-4f846a5f15d579ceeb1fb5f7f2ca75107ae25978.tar.gz bcm5719-llvm-4f846a5f15d579ceeb1fb5f7f2ca75107ae25978.zip |
[PM/AA] Port alias analysis evaluator to the new pass manager, and use
it to actually test the new pass manager AA wiring.
This patch was extracted from the (somewhat too large) D12357 and
rebosed on top of the slightly different design of the new pass manager
AA wiring that I just landed. With this we can start testing the AA in
a thorough way with the new pass manager.
Some minor cleanups to the code in the pass was necessitated here, but
otherwise it is a very minimal change.
Differential Revision: http://reviews.llvm.org/D17372
llvm-svn: 261403
Diffstat (limited to 'llvm/lib/Analysis/Analysis.cpp')
-rw-r--r-- | llvm/lib/Analysis/Analysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/Analysis.cpp b/llvm/lib/Analysis/Analysis.cpp index 9c1ac000be2..811741962aa 100644 --- a/llvm/lib/Analysis/Analysis.cpp +++ b/llvm/lib/Analysis/Analysis.cpp @@ -20,7 +20,7 @@ using namespace llvm; /// initializeAnalysis - Initialize all passes linked into the Analysis library. void llvm::initializeAnalysis(PassRegistry &Registry) { - initializeAAEvalPass(Registry); + initializeAAEvalLegacyPassPass(Registry); initializeAliasSetPrinterPass(Registry); initializeBasicAAWrapperPassPass(Registry); initializeBlockFrequencyInfoWrapperPassPass(Registry); |