This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 128852a784f [SelectionDAG] computeKnownBits - support constant pool val [...] new 874b7faaa91 [llvm-objdump][test] Fix for spurious matches against file paths new 7f2c0b78553 [AArch64][SVE2] Asm: support SVE2 Accumulate Group
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 | 30 ++++ lib/Target/AArch64/SVEInstrFormats.td | 156 +++++++++++++++++++++ test/MC/AArch64/SVE2/adclb-diagnostics.s | 25 ++++ test/MC/AArch64/SVE2/adclb.s | 36 +++++ test/MC/AArch64/SVE2/adclt-diagnostics.s | 25 ++++ test/MC/AArch64/SVE2/adclt.s | 36 +++++ test/MC/AArch64/SVE2/cadd-diagnostics.s | 38 +++++ test/MC/AArch64/SVE2/cadd.s | 72 ++++++++++ test/MC/AArch64/SVE2/saba-diagnostics.s | 20 +++ test/MC/AArch64/SVE2/saba.s | 48 +++++++ test/MC/AArch64/SVE2/sabalb-diagnostics.s | 34 +++++ test/MC/AArch64/SVE2/sabalb.s | 43 ++++++ test/MC/AArch64/SVE2/sabalt-diagnostics.s | 34 +++++ test/MC/AArch64/SVE2/sabalt.s | 43 ++++++ test/MC/AArch64/SVE2/sbclb-diagnostics.s | 25 ++++ test/MC/AArch64/SVE2/sbclb.s | 36 +++++ test/MC/AArch64/SVE2/sbclt-diagnostics.s | 25 ++++ test/MC/AArch64/SVE2/sbclt.s | 36 +++++ test/MC/AArch64/SVE2/sli-diagnostics.s | 59 ++++++++ test/MC/AArch64/SVE2/sli.s | 56 ++++++++ test/MC/AArch64/SVE2/sqcadd-diagnostics.s | 38 +++++ test/MC/AArch64/SVE2/sqcadd.s | 72 ++++++++++ test/MC/AArch64/SVE2/sri-diagnostics.s | 60 ++++++++ test/MC/AArch64/SVE2/sri.s | 56 ++++++++ test/MC/AArch64/SVE2/srsra-diagnostics.s | 60 ++++++++ test/MC/AArch64/SVE2/srsra.s | 72 ++++++++++ test/MC/AArch64/SVE2/ssra-diagnostics.s | 60 ++++++++ test/MC/AArch64/SVE2/ssra.s | 72 ++++++++++ test/MC/AArch64/SVE2/uaba-diagnostics.s | 20 +++ test/MC/AArch64/SVE2/uaba.s | 48 +++++++ test/MC/AArch64/SVE2/uabalb-diagnostics.s | 34 +++++ test/MC/AArch64/SVE2/uabalb.s | 43 ++++++ test/MC/AArch64/SVE2/uabalt-diagnostics.s | 34 +++++ test/MC/AArch64/SVE2/uabalt.s | 43 ++++++ test/MC/AArch64/SVE2/ursra-diagnostics.s | 60 ++++++++ test/MC/AArch64/SVE2/ursra.s | 72 ++++++++++ test/MC/AArch64/SVE2/usra-diagnostics.s | 60 ++++++++ test/MC/AArch64/SVE2/usra.s | 72 ++++++++++ .../X86/source-interleave-missing-source.test | 2 +- .../X86/source-interleave-no-debug-info.test | 2 +- .../X86/source-interleave-relative-paths.test | 16 +-- 41 files changed, 1863 insertions(+), 10 deletions(-) create mode 100644 test/MC/AArch64/SVE2/adclb-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/adclb.s create mode 100644 test/MC/AArch64/SVE2/adclt-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/adclt.s create mode 100644 test/MC/AArch64/SVE2/cadd-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/cadd.s create mode 100644 test/MC/AArch64/SVE2/saba-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/saba.s create mode 100644 test/MC/AArch64/SVE2/sabalb-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/sabalb.s create mode 100644 test/MC/AArch64/SVE2/sabalt-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/sabalt.s create mode 100644 test/MC/AArch64/SVE2/sbclb-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/sbclb.s create mode 100644 test/MC/AArch64/SVE2/sbclt-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/sbclt.s create mode 100644 test/MC/AArch64/SVE2/sli-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/sli.s create mode 100644 test/MC/AArch64/SVE2/sqcadd-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/sqcadd.s create mode 100644 test/MC/AArch64/SVE2/sri-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/sri.s create mode 100644 test/MC/AArch64/SVE2/srsra-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/srsra.s create mode 100644 test/MC/AArch64/SVE2/ssra-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/ssra.s create mode 100644 test/MC/AArch64/SVE2/uaba-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/uaba.s create mode 100644 test/MC/AArch64/SVE2/uabalb-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/uabalb.s create mode 100644 test/MC/AArch64/SVE2/uabalt-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/uabalt.s create mode 100644 test/MC/AArch64/SVE2/ursra-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/ursra.s create mode 100644 test/MC/AArch64/SVE2/usra-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/usra.s