This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from e035747475d [cmake] Pass LLVM_TEMPORARILY_ALLOW_OLD_TOOLCHAIN to NATIVE [...] new 37e240c2fef [CodeGen] Handle vector UADDO, SADDO, USUBO, SSUBO new 6e3888c2a45 Move SMTSolver dump() methods out-of-line.
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/Support/SMTAPI.h | 6 +- lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp | 2 +- lib/CodeGen/SelectionDAG/LegalizeTypes.h | 4 + lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp | 155 ++ lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 8 +- lib/Support/Z3Solver.cpp | 6 + test/CodeGen/AArch64/vec_uaddo.ll | 319 ++++ test/CodeGen/AMDGPU/saddo.ll | 24 +- test/CodeGen/AMDGPU/ssubo.ll | 22 +- test/CodeGen/AMDGPU/uaddo.ll | 23 +- test/CodeGen/AMDGPU/usubo.ll | 20 +- test/CodeGen/X86/vec_saddo.ll | 2028 ++++++++++++++++++++ test/CodeGen/X86/vec_ssubo.ll | 2078 +++++++++++++++++++++ test/CodeGen/X86/vec_uaddo.ll | 1381 ++++++++++++++ test/CodeGen/X86/vec_usubo.ll | 1422 ++++++++++++++ 15 files changed, 7489 insertions(+), 9 deletions(-) create mode 100644 test/CodeGen/AArch64/vec_uaddo.ll create mode 100644 test/CodeGen/X86/vec_saddo.ll create mode 100644 test/CodeGen/X86/vec_ssubo.ll create mode 100644 test/CodeGen/X86/vec_uaddo.ll create mode 100644 test/CodeGen/X86/vec_usubo.ll