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 49cc32b732a Automatic date update in version.in new 166da3c2791 aarch64: Add support for sve2p1 orqv instruction. new 984f5ebb7b5 aarch64: Add support for sve2p1 tblq instruction. new 2da3319873b aarch64: Add support for sve2p1 uzpq[1-2] instructions. new 4d9e3c3f614 aarch64: Add support for sve2p1 zipq[1-2] instructions. new d6ec64f93d1 aarch64: Add support for sve2p1 tbxq instruction. new de7a30ceaa4 aarch64: Add support for sve2p1 pmov instruction.
The 6 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/config/tc-aarch64.c | 28 +- gas/testsuite/gas/aarch64/sve2p1-5-invalid.d | 3 + gas/testsuite/gas/aarch64/sve2p1-5-invalid.l | 27 ++ gas/testsuite/gas/aarch64/sve2p1-5-invalid.s | 8 + gas/testsuite/gas/aarch64/sve2p1-5.d | 18 + gas/testsuite/gas/aarch64/sve2p1-5.s | 8 + gas/testsuite/gas/aarch64/sve2p1-6-invalid.d | 3 + gas/testsuite/gas/aarch64/sve2p1-6-invalid.l | 78 ++++ gas/testsuite/gas/aarch64/sve2p1-6-invalid.s | 36 ++ gas/testsuite/gas/aarch64/sve2p1-6.d | 58 +++ gas/testsuite/gas/aarch64/sve2p1-6.s | 53 +++ gas/testsuite/gas/aarch64/sve2p1-7-invalid.d | 3 + gas/testsuite/gas/aarch64/sve2p1-7-invalid.l | 118 +++++ gas/testsuite/gas/aarch64/sve2p1-7-invalid.s | 76 ++++ gas/testsuite/gas/aarch64/sve2p1-7.d | 64 +++ gas/testsuite/gas/aarch64/sve2p1-7.s | 63 +++ include/opcode/aarch64.h | 8 + opcodes/aarch64-asm-2.c | 40 +- opcodes/aarch64-dis-2.c | 643 +++++++++++++++++---------- opcodes/aarch64-opc-2.c | 8 + opcodes/aarch64-opc.c | 34 +- opcodes/aarch64-opc.h | 2 + opcodes/aarch64-tbl.h | 61 ++- 23 files changed, 1179 insertions(+), 261 deletions(-) create mode 100644 gas/testsuite/gas/aarch64/sve2p1-5-invalid.d create mode 100644 gas/testsuite/gas/aarch64/sve2p1-5-invalid.l create mode 100644 gas/testsuite/gas/aarch64/sve2p1-5-invalid.s create mode 100644 gas/testsuite/gas/aarch64/sve2p1-5.d create mode 100644 gas/testsuite/gas/aarch64/sve2p1-5.s create mode 100644 gas/testsuite/gas/aarch64/sve2p1-6-invalid.d create mode 100644 gas/testsuite/gas/aarch64/sve2p1-6-invalid.l create mode 100644 gas/testsuite/gas/aarch64/sve2p1-6-invalid.s create mode 100644 gas/testsuite/gas/aarch64/sve2p1-6.d create mode 100644 gas/testsuite/gas/aarch64/sve2p1-6.s create mode 100644 gas/testsuite/gas/aarch64/sve2p1-7-invalid.d create mode 100644 gas/testsuite/gas/aarch64/sve2p1-7-invalid.l create mode 100644 gas/testsuite/gas/aarch64/sve2p1-7-invalid.s create mode 100644 gas/testsuite/gas/aarch64/sve2p1-7.d create mode 100644 gas/testsuite/gas/aarch64/sve2p1-7.s