This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from b5e360f0fbb [X86] Add more load folding patterns for blend instructions [...] new 87814624959 [SDAG] Support vector UMULO/SMULO
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/CodeGen/SelectionDAG.h | 5 + include/llvm/CodeGen/TargetLowering.h | 7 +- lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 8 +- lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp | 16 + lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 44 + lib/CodeGen/SelectionDAG/TargetLowering.cpp | 40 +- lib/Target/X86/X86ISelLowering.cpp | 2 + test/CodeGen/AArch64/vec_umulo.ll | 401 ++++ test/CodeGen/X86/vec_smulo.ll | 2770 ++++++++++++++++++++++++ test/CodeGen/X86/vec_umulo.ll | 2633 ++++++++++++++++++++++ 10 files changed, 5904 insertions(+), 22 deletions(-) create mode 100644 test/CodeGen/AArch64/vec_umulo.ll create mode 100644 test/CodeGen/X86/vec_smulo.ll create mode 100644 test/CodeGen/X86/vec_umulo.ll