This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from de720479bb1 [SLPVectorizer] Don't attempt horizontal reduction on point [...] new 73739643d7b [AArch64][SVE] Asm: FP fused multiply-add/subtract instructions. new 35603461c5a [IPSCCP] Run Solve each time we resolved an undef in a function.
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/AArch64SVEInstrInfo.td | 13 +++ lib/Target/AArch64/SVEInstrFormats.td | 106 +++++++++++++++++++++ lib/Transforms/Scalar/SCCP.cpp | 10 +- test/MC/AArch64/SVE/fmad-diagnostics.s | 33 +++++++ test/MC/AArch64/SVE/fmad.s | 26 +++++ test/MC/AArch64/SVE/fmla-diagnostics.s | 72 ++++++++++++++ test/MC/AArch64/SVE/fmla.s | 44 +++++++++ test/MC/AArch64/SVE/fmls-diagnostics.s | 72 ++++++++++++++ test/MC/AArch64/SVE/fmls.s | 44 +++++++++ test/MC/AArch64/SVE/fmsb-diagnostics.s | 33 +++++++ test/MC/AArch64/SVE/fmsb.s | 26 +++++ test/MC/AArch64/SVE/fnmad-diagnostics.s | 33 +++++++ test/MC/AArch64/SVE/fnmad.s | 26 +++++ test/MC/AArch64/SVE/fnmla-diagnostics.s | 28 ++++++ test/MC/AArch64/SVE/fnmla.s | 26 +++++ test/MC/AArch64/SVE/fnmls-diagnostics.s | 28 ++++++ test/MC/AArch64/SVE/fnmls.s | 26 +++++ test/MC/AArch64/SVE/fnmsb-diagnostics.s | 33 +++++++ test/MC/AArch64/SVE/fnmsb.s | 26 +++++ ...lve-after-each-resolving-undefs-for-function.ll | 43 +++++++++ test/Transforms/SCCP/ipsccp-basic.ll | 9 +- 21 files changed, 750 insertions(+), 7 deletions(-) create mode 100644 test/MC/AArch64/SVE/fmad-diagnostics.s create mode 100644 test/MC/AArch64/SVE/fmad.s create mode 100644 test/MC/AArch64/SVE/fmla-diagnostics.s create mode 100644 test/MC/AArch64/SVE/fmla.s create mode 100644 test/MC/AArch64/SVE/fmls-diagnostics.s create mode 100644 test/MC/AArch64/SVE/fmls.s create mode 100644 test/MC/AArch64/SVE/fmsb-diagnostics.s create mode 100644 test/MC/AArch64/SVE/fmsb.s create mode 100644 test/MC/AArch64/SVE/fnmad-diagnostics.s create mode 100644 test/MC/AArch64/SVE/fnmad.s create mode 100644 test/MC/AArch64/SVE/fnmla-diagnostics.s create mode 100644 test/MC/AArch64/SVE/fnmla.s create mode 100644 test/MC/AArch64/SVE/fnmls-diagnostics.s create mode 100644 test/MC/AArch64/SVE/fnmls.s create mode 100644 test/MC/AArch64/SVE/fnmsb-diagnostics.s create mode 100644 test/MC/AArch64/SVE/fnmsb.s create mode 100644 test/Transforms/IPConstantProp/solve-after-each-resolving-undef [...]