This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 40552436a1d [MC] fix a clang-tidy warning, NFC new 1986113fb21 [X86][AVX] Prefer VPBLENDW+VPBLENDD to VPBLENDVB for v16i16 [...] new fe980e2e006 [NFC] Factor out guard utility methods into a separate file
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/Transforms/Utils/GuardUtils.h | 30 +++++++++++++ lib/Target/X86/X86ISelLowering.cpp | 16 ++++++- lib/Transforms/Scalar/LowerGuardIntrinsic.cpp | 50 +-------------------- lib/Transforms/Utils/CMakeLists.txt | 1 + lib/Transforms/Utils/GuardUtils.cpp | 64 +++++++++++++++++++++++++++ test/CodeGen/X86/insertelement-ones.ll | 48 +++++++------------- test/CodeGen/X86/vector-shuffle-256-v16.ll | 42 ++++++------------ test/CodeGen/X86/vector-shuffle-256-v32.ll | 24 +++++----- test/CodeGen/X86/vector-shuffle-512-v32.ll | 20 ++++----- test/CodeGen/X86/vector-shuffle-v48.ll | 4 +- 10 files changed, 164 insertions(+), 135 deletions(-) create mode 100644 include/llvm/Transforms/Utils/GuardUtils.h create mode 100644 lib/Transforms/Utils/GuardUtils.cpp