This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from 5186cf88ac0 gas/NEWS: announce the new SCFI command line option new 7e8d2d87570 aarch64: Add support for FEAT_B16B16 instructions. new 89e06ec1521 aarch64: Add support for FEAT_SME2p1 instructions. new 88601c2d941 aarch64: Add support for FEAT_SVE2p1. new 39092c7a1fb aarch64: Add SVE2.1 dupq, eorqv and extq instructions. new b34104edab8 PATCH 5/6][Binutils] aarch64: Add SVE2.1 fmin and fmax inst [...] new b33f1bcd152 aarch64: Add SVE2.1 Contiguous load/store instructions. new 2db11bdf849 Add generated source files and fix thinko in aarch64-asm.c
The 7 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: gas/NEWS | 6 + gas/config/tc-aarch64.c | 25 + gas/doc/c-aarch64.texi | 4 + gas/testsuite/gas/aarch64/bfloat16-1.d | 106 +++ gas/testsuite/gas/aarch64/bfloat16-1.s | 112 +++ gas/testsuite/gas/aarch64/bfloat16-bad.d | 4 + gas/testsuite/gas/aarch64/bfloat16-bad.l | 97 ++ gas/testsuite/gas/aarch64/sme2p1-1.d | 42 + gas/testsuite/gas/aarch64/sme2p1-1.s | 39 + gas/testsuite/gas/aarch64/sve2p1-1-bad.d | 4 + gas/testsuite/gas/aarch64/sve2p1-1-bad.l | 96 ++ gas/testsuite/gas/aarch64/sve2p1-1.d | 105 +++ gas/testsuite/gas/aarch64/sve2p1-1.s | 107 +++ include/opcode/aarch64.h | 29 +- opcodes/aarch64-asm-2.c | 136 +-- opcodes/aarch64-asm.c | 101 ++ opcodes/aarch64-asm.h | 3 + opcodes/aarch64-dis-2.c | 1473 ++++++++++++++++++++---------- opcodes/aarch64-dis.c | 135 +++ opcodes/aarch64-dis.h | 4 + opcodes/aarch64-opc-2.c | 13 + opcodes/aarch64-opc.c | 102 ++- opcodes/aarch64-opc.h | 7 + opcodes/aarch64-tbl.h | 152 ++- 24 files changed, 2333 insertions(+), 569 deletions(-) create mode 100644 gas/testsuite/gas/aarch64/bfloat16-1.d create mode 100644 gas/testsuite/gas/aarch64/bfloat16-1.s create mode 100644 gas/testsuite/gas/aarch64/bfloat16-bad.d create mode 100644 gas/testsuite/gas/aarch64/bfloat16-bad.l create mode 100644 gas/testsuite/gas/aarch64/sme2p1-1.d create mode 100644 gas/testsuite/gas/aarch64/sme2p1-1.s create mode 100644 gas/testsuite/gas/aarch64/sve2p1-1-bad.d create mode 100644 gas/testsuite/gas/aarch64/sve2p1-1-bad.l create mode 100644 gas/testsuite/gas/aarch64/sve2p1-1.d create mode 100644 gas/testsuite/gas/aarch64/sve2p1-1.s