This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 02f474a [codeview] Improve some comments new 2d1483c [PM] Port Interprocedural SCCP to the new pass manager. new da713ca [PM] port Branch Frequency Analaysis pass to new PM
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/BlockFrequencyInfo.h | 31 +++++++ include/llvm/InitializePasses.h | 2 +- include/llvm/Transforms/IPO/SCCP.h | 34 ++++++++ lib/Analysis/BlockFrequencyInfo.cpp | 27 ++++++ lib/LTO/LTOCodeGenerator.cpp | 2 +- lib/Passes/PassBuilder.cpp | 3 + lib/Passes/PassRegistry.def | 3 + lib/Transforms/Scalar/SCCP.cpp | 95 ++++++++++++---------- lib/Transforms/Scalar/Scalar.cpp | 2 +- test/Analysis/BlockFrequencyInfo/bad_input.ll | 1 + test/Analysis/BlockFrequencyInfo/basic.ll | 1 + .../Analysis/BlockFrequencyInfo/double_backedge.ll | 1 + test/Analysis/BlockFrequencyInfo/double_exit.ll | 1 + .../extremely-likely-loop-successor.ll | 1 + test/Analysis/BlockFrequencyInfo/irreducible.ll | 1 + .../BlockFrequencyInfo/irreducible_loop_crash.ll | 1 + .../BlockFrequencyInfo/loop_with_branch.ll | 1 + .../BlockFrequencyInfo/loops_with_profile_info.ll | 1 + .../nested_loop_with_branches.ll | 1 + test/Transforms/IPConstantProp/global.ll | 1 + 20 files changed, 165 insertions(+), 45 deletions(-) create mode 100644 include/llvm/Transforms/IPO/SCCP.h