This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from fe476f5b59e [AArch64][SVE] Asm: Support for (saturating) vector INC/DEC [...] new 868f51c186b [AArch64][SVE] Asm: Support for (SQ)INCP/DECP (scalar, vector)
The 1 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 | 76 +++++++++++++++++++++++++++++++ test/MC/AArch64/SVE/decp-diagnostics.s | 38 ++++++++++++++++ test/MC/AArch64/SVE/decp.s | 74 ++++++++++++++++++++++++++++++ test/MC/AArch64/SVE/incp-diagnostics.s | 38 ++++++++++++++++ test/MC/AArch64/SVE/incp.s | 74 ++++++++++++++++++++++++++++++ test/MC/AArch64/SVE/sqdecp-diagnostics.s | 53 +++++++++++++++++++++ test/MC/AArch64/SVE/sqdecp.s | 74 ++++++++++++++++++++++++++++++ test/MC/AArch64/SVE/sqincp-diagnostics.s | 48 +++++++++++++++++++ test/MC/AArch64/SVE/sqincp.s | 74 ++++++++++++++++++++++++++++++ test/MC/AArch64/SVE/uqdecp.s | 74 ++++++++++++++++++++++++++++++ test/MC/AArch64/SVE/uqincp-diagnostics.s | 48 +++++++++++++++++++ test/MC/AArch64/SVE/uqincp.s | 74 ++++++++++++++++++++++++++++++ 13 files changed, 763 insertions(+) create mode 100644 test/MC/AArch64/SVE/decp-diagnostics.s create mode 100644 test/MC/AArch64/SVE/decp.s create mode 100644 test/MC/AArch64/SVE/incp-diagnostics.s create mode 100644 test/MC/AArch64/SVE/incp.s create mode 100644 test/MC/AArch64/SVE/sqdecp-diagnostics.s create mode 100644 test/MC/AArch64/SVE/sqdecp.s create mode 100644 test/MC/AArch64/SVE/sqincp-diagnostics.s create mode 100644 test/MC/AArch64/SVE/sqincp.s create mode 100644 test/MC/AArch64/SVE/uqdecp.s create mode 100644 test/MC/AArch64/SVE/uqincp-diagnostics.s create mode 100644 test/MC/AArch64/SVE/uqincp.s