This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from c84e30c Reapply r289926: attempt to fix windows build new 54cffa1 [PM] Provide an initial, minimal port of the inliner to the n [...]
The 1 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/CGSCCPassManager.h | 13 +- .../Transforms/IPO/{InlinerPass.h => Inliner.h} | 51 ++-- include/llvm/Transforms/Utils/Cloning.h | 12 + lib/Analysis/InlineCost.cpp | 6 +- lib/Passes/PassBuilder.cpp | 1 + lib/Passes/PassRegistry.def | 1 + lib/Transforms/IPO/AlwaysInliner.cpp | 10 +- lib/Transforms/IPO/InlineSimple.cpp | 13 +- lib/Transforms/IPO/Inliner.cpp | 189 ++++++++++++++- lib/Transforms/Utils/InlineFunction.cpp | 10 +- test/Transforms/Inline/basictest.ll | 1 + test/Transforms/Inline/cgscc-update.ll | 145 +++++++++++ test/Transforms/Inline/last-callsite.ll | 269 +++++++++++++++++++++ test/Transforms/Inline/nested-inline.ll | 1 + 14 files changed, 682 insertions(+), 40 deletions(-) rename include/llvm/Transforms/IPO/{InlinerPass.h => Inliner.h} (60%) create mode 100644 test/Transforms/Inline/cgscc-update.ll create mode 100644 test/Transforms/Inline/last-callsite.ll