This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 5f1cfe90f3e [X86] Remove X86 specific scalar FMA intrinsics and upgrade [...] new bd76e146be4 [Power9] Optimize codgen for conversions of int to float128 new 0e87e9463a9 [AArch64][SVE] Asm: Support for signed/unsigned MIN/MAX/ABD
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: lib/Target/AArch64/AArch64InstrFormats.td | 6 ++ lib/Target/AArch64/AArch64SVEInstrInfo.td | 12 +++ lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp | 3 + lib/Target/AArch64/SVEInstrFormats.td | 32 ++++++ lib/Target/PowerPC/PPCInstrVSX.td | 17 +++ test/CodeGen/PowerPC/f128-conv.ll | 126 ++++++++++++++++++++++ test/CodeGen/PowerPC/f128-passByValue.ll | 20 ++-- test/MC/AArch64/SVE/sabd-diagnostics.s | 6 ++ test/MC/AArch64/SVE/sabd.s | 32 ++++++ test/MC/AArch64/SVE/smax-diagnostics.s | 16 +++ test/MC/AArch64/SVE/smax.s | 80 ++++++++++++++ test/MC/AArch64/SVE/smin-diagnostics.s | 16 +++ test/MC/AArch64/SVE/smin.s | 80 ++++++++++++++ test/MC/AArch64/SVE/uabd-diagnostics.s | 6 ++ test/MC/AArch64/SVE/uabd.s | 32 ++++++ test/MC/AArch64/SVE/umax-diagnostics.s | 16 +++ test/MC/AArch64/SVE/umax.s | 80 ++++++++++++++ test/MC/AArch64/SVE/umin-diagnostics.s | 16 +++ test/MC/AArch64/SVE/umin.s | 80 ++++++++++++++ 19 files changed, 666 insertions(+), 10 deletions(-) create mode 100644 test/MC/AArch64/SVE/sabd-diagnostics.s create mode 100644 test/MC/AArch64/SVE/sabd.s create mode 100644 test/MC/AArch64/SVE/smax-diagnostics.s create mode 100644 test/MC/AArch64/SVE/smax.s create mode 100644 test/MC/AArch64/SVE/smin-diagnostics.s create mode 100644 test/MC/AArch64/SVE/smin.s create mode 100644 test/MC/AArch64/SVE/uabd-diagnostics.s create mode 100644 test/MC/AArch64/SVE/uabd.s create mode 100644 test/MC/AArch64/SVE/umax-diagnostics.s create mode 100644 test/MC/AArch64/SVE/umax.s create mode 100644 test/MC/AArch64/SVE/umin-diagnostics.s create mode 100644 test/MC/AArch64/SVE/umin.s