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 41664b45ab Fix PR 21337: segfault when re-reading symbols. new c604a79ad4 [ARM] Assembler and disassembler support Dot Product Extension new 65a55fbbd9 [AArch64] Add dot product support for AArch64 to binutils
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: gas/ChangeLog | 29 ++ gas/config/tc-aarch64.c | 10 +- gas/config/tc-arm.c | 94 ++++- gas/doc/c-aarch64.texi | 2 + gas/doc/c-arm.texi | 1 + gas/testsuite/gas/aarch64/dotproduct.d | 548 ++++++++++++++++++++++++++++ gas/testsuite/gas/aarch64/dotproduct.s | 540 +++++++++++++++++++++++++++ gas/testsuite/gas/arm/dotprod-illegal.d | 2 + gas/testsuite/gas/arm/dotprod-illegal.l | 10 + gas/testsuite/gas/arm/dotprod-illegal.s | 16 + gas/testsuite/gas/arm/dotprod-legacy-arch.d | 3 + gas/testsuite/gas/arm/dotprod-legacy-arch.l | 3 + gas/testsuite/gas/arm/dotprod-thumb2.d | 297 +++++++++++++++ gas/testsuite/gas/arm/dotprod.d | 297 +++++++++++++++ gas/testsuite/gas/arm/dotprod.s | 44 +++ include/ChangeLog | 10 + include/opcode/aarch64.h | 2 + include/opcode/arm.h | 5 +- opcodes/ChangeLog | 13 + opcodes/aarch64-asm.c | 14 + opcodes/aarch64-dis-2.c | 382 ++++++++++--------- opcodes/aarch64-dis.c | 15 + opcodes/aarch64-tbl.h | 24 ++ opcodes/arm-dis.c | 6 + 24 files changed, 2183 insertions(+), 184 deletions(-) create mode 100644 gas/testsuite/gas/aarch64/dotproduct.d create mode 100644 gas/testsuite/gas/aarch64/dotproduct.s create mode 100644 gas/testsuite/gas/arm/dotprod-illegal.d create mode 100644 gas/testsuite/gas/arm/dotprod-illegal.l create mode 100644 gas/testsuite/gas/arm/dotprod-illegal.s create mode 100644 gas/testsuite/gas/arm/dotprod-legacy-arch.d create mode 100644 gas/testsuite/gas/arm/dotprod-legacy-arch.l create mode 100644 gas/testsuite/gas/arm/dotprod-thumb2.d create mode 100644 gas/testsuite/gas/arm/dotprod.d create mode 100644 gas/testsuite/gas/arm/dotprod.s