diff options
author | Igor Laevsky <igmyrj@gmail.com> | 2016-10-28 12:57:20 +0000 |
---|---|---|
committer | Igor Laevsky <igmyrj@gmail.com> | 2016-10-28 12:57:20 +0000 |
commit | c3ccf5d77baa8cf4237e3eb68858eda97155e037 (patch) | |
tree | 76936fa233d72a3547d87bbca964474894375aa8 /llvm/lib/Analysis/Analysis.cpp | |
parent | 10c606295ffe6800558566718c6332355097efa2 (diff) | |
download | bcm5719-llvm-c3ccf5d77baa8cf4237e3eb68858eda97155e037.tar.gz bcm5719-llvm-c3ccf5d77baa8cf4237e3eb68858eda97155e037.zip |
[LCSSA] Perform LCSSA verification only for the current loop nest.
Now LPPassManager will run LCSSA verification only for the top-level loop
which was processed on the current iteration.
Differential Revision: https://reviews.llvm.org/D25873
llvm-svn: 285394
Diffstat (limited to 'llvm/lib/Analysis/Analysis.cpp')
-rw-r--r-- | llvm/lib/Analysis/Analysis.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Analysis/Analysis.cpp b/llvm/lib/Analysis/Analysis.cpp index 635e3c793be..0e7cf402cdb 100644 --- a/llvm/lib/Analysis/Analysis.cpp +++ b/llvm/lib/Analysis/Analysis.cpp @@ -77,6 +77,7 @@ void llvm::initializeAnalysis(PassRegistry &Registry) { initializeTargetTransformInfoWrapperPassPass(Registry); initializeTypeBasedAAWrapperPassPass(Registry); initializeScopedNoAliasAAWrapperPassPass(Registry); + initializeLCSSAVerificationPassPass(Registry); } void LLVMInitializeAnalysis(LLVMPassRegistryRef R) { |