This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from cead076cfb4 [WebAssembly] Commit a file I accidentally omitted from r319956. new 9044c81903f [PGO] Make indirect call promotion a utility new 2b68e112a31 [InstCombine] canonicalize constant-minus-boolean to select [...] new 4bae52896ec [Hexagon] Handle perfect shuffles on single vectors
The 3 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/Transforms/Instrumentation.h | 10 +- include/llvm/Transforms/Utils/CallPromotionUtils.h | 44 +++ lib/Target/Hexagon/HexagonISelDAGToDAGHVX.cpp | 25 +- lib/Transforms/IPO/SampleProfile.cpp | 7 +- lib/Transforms/InstCombine/InstCombineAddSub.cpp | 7 +- .../Instrumentation/IndirectCallPromotion.cpp | 323 +------------------- lib/Transforms/Utils/CMakeLists.txt | 1 + lib/Transforms/Utils/CallPromotionUtils.cpp | 328 +++++++++++++++++++++ test/CodeGen/Hexagon/autohvx/perfect-single.ll | 20 ++ test/Transforms/InstCombine/zext-bool-add-sub.ll | 9 +- 10 files changed, 442 insertions(+), 332 deletions(-) create mode 100644 include/llvm/Transforms/Utils/CallPromotionUtils.h create mode 100644 lib/Transforms/Utils/CallPromotionUtils.cpp create mode 100644 test/CodeGen/Hexagon/autohvx/perfect-single.ll