This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from db42939a312 [AArch64][SVE2] Asm: support FCVTX/FLOGB instructions new d315fd9cb08 [AArch64][SVE2] Asm: support SVE2 load instructions new 2b307149eac [AArch64][SVE2] Asm: support SVE2 vector splice (constructive)
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 | 18 ++++++ lib/Target/AArch64/SVEInstrFormats.td | 64 +++++++++++++++++++++ test/MC/AArch64/SVE/ldnt1b-diagnostics.s | 4 +- test/MC/AArch64/SVE2/ldnt1b-diagnostics.s | 91 ++++++++++++++++++++++++++++++ test/MC/AArch64/SVE2/ldnt1b.s | 80 ++++++++++++++++++++++++++ test/MC/AArch64/SVE2/ldnt1d-diagnostics.s | 91 ++++++++++++++++++++++++++++++ test/MC/AArch64/SVE2/ldnt1d.s | 44 +++++++++++++++ test/MC/AArch64/SVE2/ldnt1h-diagnostics.s | 91 ++++++++++++++++++++++++++++++ test/MC/AArch64/SVE2/ldnt1h.s | 80 ++++++++++++++++++++++++++ test/MC/AArch64/SVE2/ldnt1sb-diagnostics.s | 91 ++++++++++++++++++++++++++++++ test/MC/AArch64/SVE2/ldnt1sb.s | 80 ++++++++++++++++++++++++++ test/MC/AArch64/SVE2/ldnt1sh-diagnostics.s | 91 ++++++++++++++++++++++++++++++ test/MC/AArch64/SVE2/ldnt1sh.s | 80 ++++++++++++++++++++++++++ test/MC/AArch64/SVE2/ldnt1sw-diagnostics.s | 91 ++++++++++++++++++++++++++++++ test/MC/AArch64/SVE2/ldnt1sw.s | 44 +++++++++++++++ test/MC/AArch64/SVE2/ldnt1w-diagnostics.s | 91 ++++++++++++++++++++++++++++++ test/MC/AArch64/SVE2/ldnt1w.s | 80 ++++++++++++++++++++++++++ test/MC/AArch64/SVE2/splice-diagnostics.s | 83 +++++++++++++++++++++++++++ test/MC/AArch64/SVE2/splice.s | 32 +++++++++++ 19 files changed, 1324 insertions(+), 2 deletions(-) create mode 100644 test/MC/AArch64/SVE2/ldnt1b-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/ldnt1b.s create mode 100644 test/MC/AArch64/SVE2/ldnt1d-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/ldnt1d.s create mode 100644 test/MC/AArch64/SVE2/ldnt1h-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/ldnt1h.s create mode 100644 test/MC/AArch64/SVE2/ldnt1sb-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/ldnt1sb.s create mode 100644 test/MC/AArch64/SVE2/ldnt1sh-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/ldnt1sh.s create mode 100644 test/MC/AArch64/SVE2/ldnt1sw-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/ldnt1sw.s create mode 100644 test/MC/AArch64/SVE2/ldnt1w-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/ldnt1w.s create mode 100644 test/MC/AArch64/SVE2/splice-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/splice.s