This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from d0ae989 [CFLAA] Simplify CFLGraphBuilder. NFC. new 654ec29 [CFLAA] Move the graph builder out from CFLSteens. NFC. new fff81b2 [PM] Port LoopSimplify to the new pass manager.
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/llvm/Analysis/CFLAndersAliasAnalysis.h | 11 + include/llvm/Analysis/CFLSteensAliasAnalysis.h | 8 + include/llvm/Transforms/Utils/LoopSimplify.h | 65 ++++ include/llvm/Transforms/Utils/LoopUtils.h | 8 - lib/Analysis/AliasAnalysisSummary.h | 13 + lib/Analysis/CFLGraph.h | 409 +++++++++++++++++++++++ lib/Analysis/CFLSteensAliasAnalysis.cpp | 440 +------------------------ lib/Passes/PassBuilder.cpp | 1 + lib/Passes/PassRegistry.def | 1 + lib/Transforms/Utils/LoopSimplify.cpp | 31 ++ lib/Transforms/Utils/LoopUnroll.cpp | 1 + test/Transforms/LoopSimplify/basictest.ll | 1 + 12 files changed, 559 insertions(+), 430 deletions(-) create mode 100644 include/llvm/Transforms/Utils/LoopSimplify.h