This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 5ad3e91517e [NEON] Support intrinsic for scalar and vector versions of [...] new 3615c167adb [X86] Remove OpndItins/SizeItins from all sse instruction d [...] new 7d9ab967e98 [AArch64][SVE] Asm: Support for contiguous ST1 (scalar+imm) [...]
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/AsmParser/AArch64AsmParser.cpp | 40 +- lib/Target/AArch64/SVEInstrFormats.td | 55 + lib/Target/X86/X86InstrAVX512.td | 16 +- lib/Target/X86/X86InstrSSE.td | 1172 ++++++++++----------- test/MC/AArch64/SVE/st1b-diagnostics.s | 85 ++ test/MC/AArch64/SVE/st1b.s | 104 ++ test/MC/AArch64/SVE/st1d-diagnostics.s | 41 + test/MC/AArch64/SVE/st1d.s | 32 + test/MC/AArch64/SVE/st1h-diagnostics.s | 70 ++ test/MC/AArch64/SVE/st1h.s | 80 ++ test/MC/AArch64/SVE/st1w-diagnostics.s | 58 + test/MC/AArch64/SVE/st1w.s | 56 + 13 files changed, 1199 insertions(+), 623 deletions(-) create mode 100644 test/MC/AArch64/SVE/st1b-diagnostics.s create mode 100644 test/MC/AArch64/SVE/st1b.s create mode 100644 test/MC/AArch64/SVE/st1d-diagnostics.s create mode 100644 test/MC/AArch64/SVE/st1d.s create mode 100644 test/MC/AArch64/SVE/st1h-diagnostics.s create mode 100644 test/MC/AArch64/SVE/st1h.s create mode 100644 test/MC/AArch64/SVE/st1w-diagnostics.s create mode 100644 test/MC/AArch64/SVE/st1w.s