This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from be01ee2 IfConversion: Use references instead of pointers where possible; NFC new b699f7b [PM] Port the always inliner to the new pass manager in a muc [...]
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/InitializePasses.h | 2 +- include/llvm/LinkAllPasses.h | 3 +- include/llvm/Transforms/IPO.h | 6 --- include/llvm/Transforms/IPO/AlwaysInliner.h | 40 +++++++++++++++ lib/Passes/PassBuilder.cpp | 1 + lib/Passes/PassRegistry.def | 1 + lib/Target/AMDGPU/AMDGPUTargetMachine.cpp | 3 +- .../IPO/{InlineAlways.cpp => AlwaysInliner.cpp} | 57 ++++++++++++++++------ lib/Transforms/IPO/CMakeLists.txt | 2 +- lib/Transforms/IPO/IPO.cpp | 5 +- lib/Transforms/Utils/InlineFunction.cpp | 2 +- test/Transforms/Inline/always-inline.ll | 29 ++++++++--- tools/bugpoint/bugpoint.cpp | 3 +- tools/opt/opt.cpp | 3 +- 14 files changed, 120 insertions(+), 37 deletions(-) create mode 100644 include/llvm/Transforms/IPO/AlwaysInliner.h rename lib/Transforms/IPO/{InlineAlways.cpp => AlwaysInliner.cpp} (62%)