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 ee0fa662707 [PATCH] ld: Improve documentation of -rpath-link search paths new 4792a423d26 aarch64: Add support for (M)ADDPT and (M)SUBPT instructions new 07b16fae7b7 aarch64: Add support for SVE ADDPT, SUBPT, MADPT, MLAPT ins [...] new 0273b5967e2 Regenerate AArch64 opcodes files
The 3 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 | 47 ++ gas/doc/c-aarch64.texi | 2 + gas/testsuite/gas/aarch64/cpa-addsub-bad.d | 4 + gas/testsuite/gas/aarch64/cpa-addsub-bad.l | 50 ++ gas/testsuite/gas/aarch64/cpa-addsub-bad.s | 29 + gas/testsuite/gas/aarch64/cpa-addsub-neg.d | 5 + gas/testsuite/gas/aarch64/cpa-addsub-neg.l | 27 + gas/testsuite/gas/aarch64/cpa-addsub.d | 39 ++ gas/testsuite/gas/aarch64/cpa-addsub.s | 29 + gas/testsuite/gas/aarch64/cpa-sve-bad.d | 4 + gas/testsuite/gas/aarch64/cpa-sve-bad.l | 92 ++++ gas/testsuite/gas/aarch64/cpa-sve-bad.s | 67 +++ gas/testsuite/gas/aarch64/cpa-sve-neg.d | 7 + gas/testsuite/gas/aarch64/cpa-sve-neg.l | 7 + gas/testsuite/gas/aarch64/cpa-sve-neg.s | 6 + gas/testsuite/gas/aarch64/cpa-sve.d | 66 +++ gas/testsuite/gas/aarch64/cpa-sve.s | 60 +++ include/opcode/aarch64.h | 3 + opcodes/aarch64-asm-2.c | 230 ++++---- opcodes/aarch64-asm.c | 15 + opcodes/aarch64-asm.h | 1 + opcodes/aarch64-dis-2.c | 820 ++++++++++++++++------------- opcodes/aarch64-dis.c | 17 + opcodes/aarch64-dis.h | 1 + opcodes/aarch64-opc-2.c | 1 + opcodes/aarch64-opc.c | 25 + opcodes/aarch64-tbl.h | 38 +- 27 files changed, 1223 insertions(+), 469 deletions(-) create mode 100644 gas/testsuite/gas/aarch64/cpa-addsub-bad.d create mode 100644 gas/testsuite/gas/aarch64/cpa-addsub-bad.l create mode 100644 gas/testsuite/gas/aarch64/cpa-addsub-bad.s create mode 100644 gas/testsuite/gas/aarch64/cpa-addsub-neg.d create mode 100644 gas/testsuite/gas/aarch64/cpa-addsub-neg.l create mode 100644 gas/testsuite/gas/aarch64/cpa-addsub.d create mode 100644 gas/testsuite/gas/aarch64/cpa-addsub.s create mode 100644 gas/testsuite/gas/aarch64/cpa-sve-bad.d create mode 100644 gas/testsuite/gas/aarch64/cpa-sve-bad.l create mode 100644 gas/testsuite/gas/aarch64/cpa-sve-bad.s create mode 100644 gas/testsuite/gas/aarch64/cpa-sve-neg.d create mode 100644 gas/testsuite/gas/aarch64/cpa-sve-neg.l create mode 100644 gas/testsuite/gas/aarch64/cpa-sve-neg.s create mode 100644 gas/testsuite/gas/aarch64/cpa-sve.d create mode 100644 gas/testsuite/gas/aarch64/cpa-sve.s