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 6ec49e7 Help diagnose problems with the metag target when mixing stat [...] new 3f06e55 [AArch64] Add ARMv8.3 combined pointer authentication load in [...] new ccfc90a [AArch64] Add ARMv8.3 javascript floating-point conversion in [...] new 2861767 [AArch64] Add ARMv8.3 weaker release consistency load instructions
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/ChangeLog | 30 + gas/config/tc-aarch64.c | 21 + gas/testsuite/gas/aarch64/fp-armv8_3.d | 10 + gas/testsuite/gas/aarch64/fp-armv8_3.s | 5 + gas/testsuite/gas/aarch64/illegal-fjcvtzs.d | 2 + gas/testsuite/gas/aarch64/illegal-fjcvtzs.l | 8 + gas/testsuite/gas/aarch64/illegal-fjcvtzs.s | 14 + gas/testsuite/gas/aarch64/illegal-ldapr.d | 2 + gas/testsuite/gas/aarch64/illegal-ldapr.l | 16 + gas/testsuite/gas/aarch64/illegal-ldapr.s | 25 + gas/testsuite/gas/aarch64/illegal-ldraa.d | 2 + gas/testsuite/gas/aarch64/illegal-ldraa.l | 35 + gas/testsuite/gas/aarch64/illegal-ldraa.s | 44 + gas/testsuite/gas/aarch64/illegal-nofp-armv8_3.d | 2 + gas/testsuite/gas/aarch64/illegal-nofp-armv8_3.l | 3 + gas/testsuite/gas/aarch64/illegal-nofp-armv8_3.s | 6 + gas/testsuite/gas/aarch64/ldst-exclusive-armv8_3.d | 20 + gas/testsuite/gas/aarch64/ldst-exclusive-armv8_3.s | 22 + gas/testsuite/gas/aarch64/pac.d | 22 + gas/testsuite/gas/aarch64/pac.s | 23 + include/ChangeLog | 5 + include/opcode/aarch64.h | 2 + opcodes/ChangeLog | 32 + opcodes/aarch64-asm-2.c | 728 ++--- opcodes/aarch64-asm.c | 24 + opcodes/aarch64-asm.h | 1 + opcodes/aarch64-dis-2.c | 2890 ++++++++++---------- opcodes/aarch64-dis.c | 21 + opcodes/aarch64-dis.h | 1 + opcodes/aarch64-opc-2.c | 59 +- opcodes/aarch64-opc.c | 24 + opcodes/aarch64-opc.h | 1 + opcodes/aarch64-tbl.h | 24 + 33 files changed, 2321 insertions(+), 1803 deletions(-) create mode 100644 gas/testsuite/gas/aarch64/fp-armv8_3.d create mode 100644 gas/testsuite/gas/aarch64/fp-armv8_3.s create mode 100644 gas/testsuite/gas/aarch64/illegal-fjcvtzs.d create mode 100644 gas/testsuite/gas/aarch64/illegal-fjcvtzs.l create mode 100644 gas/testsuite/gas/aarch64/illegal-fjcvtzs.s create mode 100644 gas/testsuite/gas/aarch64/illegal-ldapr.d create mode 100644 gas/testsuite/gas/aarch64/illegal-ldapr.l create mode 100644 gas/testsuite/gas/aarch64/illegal-ldapr.s create mode 100644 gas/testsuite/gas/aarch64/illegal-ldraa.d create mode 100644 gas/testsuite/gas/aarch64/illegal-ldraa.l create mode 100644 gas/testsuite/gas/aarch64/illegal-ldraa.s create mode 100644 gas/testsuite/gas/aarch64/illegal-nofp-armv8_3.d create mode 100644 gas/testsuite/gas/aarch64/illegal-nofp-armv8_3.l create mode 100644 gas/testsuite/gas/aarch64/illegal-nofp-armv8_3.s create mode 100644 gas/testsuite/gas/aarch64/ldst-exclusive-armv8_3.d create mode 100644 gas/testsuite/gas/aarch64/ldst-exclusive-armv8_3.s