diff options
author | Davide Italiano <davide@freebsd.org> | 2016-07-09 03:27:24 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2016-07-09 03:27:24 +0000 |
commit | 081fd139b3bd2247c658d7db6c7e3e65d0ce0424 (patch) | |
tree | 1e39b7329c9edba43ab11b561efc77e33135d707 /llvm/lib/Transforms/Utils/LoopSimplify.cpp | |
parent | 92b933a55c69b91808d47d451e152b3293354805 (diff) | |
download | bcm5719-llvm-081fd139b3bd2247c658d7db6c7e3e65d0ce0424.tar.gz bcm5719-llvm-081fd139b3bd2247c658d7db6c7e3e65d0ce0424.zip |
[LoopSimplify] Remove a comment which is unlikely to age well.
Chandler pointed out in his review but I forgot to remove before
committing, my bad.
llvm-svn: 274963
Diffstat (limited to 'llvm/lib/Transforms/Utils/LoopSimplify.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/LoopSimplify.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/Transforms/Utils/LoopSimplify.cpp b/llvm/lib/Transforms/Utils/LoopSimplify.cpp index a364cab5062..b3a928bf775 100644 --- a/llvm/lib/Transforms/Utils/LoopSimplify.cpp +++ b/llvm/lib/Transforms/Utils/LoopSimplify.cpp @@ -819,10 +819,6 @@ PreservedAnalyses LoopSimplifyPass::run(Function &F, if (!Changed) return PreservedAnalyses::all(); PreservedAnalyses PA; - - // The old PM also preserved LCSSAID and BreakCriticalEdgesID. - // This makes no sense in the new PM so we omit those from the set - // of preserved passes. PA.preserve<DominatorTreeAnalysis>(); PA.preserve<LoopAnalysis>(); PA.preserve<BasicAA>(); |