This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 0d170a8 [SimplifyCFG] propagate branch metadata when creating select new 1564d12 [PGO] Promote indirect calls to conditional direct calls with [...] new 0174eda more buildbot failure fix to r267792
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/InitializePasses.h | 1 + include/llvm/LinkAllPasses.h | 1 + include/llvm/Transforms/Instrumentation.h | 1 + lib/Transforms/IPO/PassManagerBuilder.cpp | 11 +- lib/Transforms/Instrumentation/CMakeLists.txt | 1 + .../Instrumentation/IndirectCallPromotion.cpp | 693 +++++++++++++++++++++ lib/Transforms/Instrumentation/Instrumentation.cpp | 1 + test/Transforms/PGOProfile/comdat_internal.ll | 2 +- .../PGOProfile/icp_covariant_call_return.ll | 44 ++ .../PGOProfile/icp_covariant_invoke_return.ll | 110 ++++ test/Transforms/PGOProfile/icp_invoke.ll | 104 ++++ test/Transforms/PGOProfile/icp_mismatch_msg.ll | 39 ++ test/Transforms/PGOProfile/icp_vararg.ll | 33 + .../PGOProfile/indirect_call_promotion.ll | 54 ++ 14 files changed, 1093 insertions(+), 2 deletions(-) create mode 100644 lib/Transforms/Instrumentation/IndirectCallPromotion.cpp create mode 100644 test/Transforms/PGOProfile/icp_covariant_call_return.ll create mode 100644 test/Transforms/PGOProfile/icp_covariant_invoke_return.ll create mode 100644 test/Transforms/PGOProfile/icp_invoke.ll create mode 100644 test/Transforms/PGOProfile/icp_mismatch_msg.ll create mode 100644 test/Transforms/PGOProfile/icp_vararg.ll create mode 100644 test/Transforms/PGOProfile/indirect_call_promotion.ll