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 7ba115508aa PR26580, Size and alignment of commons vs as-needed shared lib new 95830c988a6 aarch64: Add base support for Armv8-R new 03fb3142c71 aarch64: Add support for Armv8-R DFB alias new 38cf07a6c0b aarch64: Add support for Armv8-R system registers new f1363b0fb4e aarch64: Add -mcpu option for Cortex-R82
The 4 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: bfd/ChangeLog | 7 + bfd/archures.c | 1 + bfd/bfd-in2.h | 1 + bfd/cpu-aarch64.c | 6 +- gas/ChangeLog | 29 + gas/config/tc-aarch64.c | 11 +- gas/doc/c-aarch64.texi | 5 +- gas/testsuite/gas/aarch64/dfb.d | 8 + gas/testsuite/gas/aarch64/dfb.s | 2 + gas/testsuite/gas/aarch64/v8-r-bad-sysregs.d | 3 + gas/testsuite/gas/aarch64/v8-r-bad-sysregs.l | 14 + gas/testsuite/gas/aarch64/v8-r-bad-sysregs.s | 23 + gas/testsuite/gas/aarch64/v8-r-sysregs-need-arch.d | 3 + gas/testsuite/gas/aarch64/v8-r-sysregs-need-arch.l | 141 ++ gas/testsuite/gas/aarch64/v8-r-sysregs.d | 149 ++ gas/testsuite/gas/aarch64/v8-r-sysregs.s | 141 ++ include/ChangeLog | 14 + include/opcode/aarch64.h | 14 +- opcodes/ChangeLog | 40 + opcodes/aarch64-asm-2.c | 197 +- opcodes/aarch64-dis-2.c | 2523 ++++++++++---------- opcodes/aarch64-dis.c | 35 +- opcodes/aarch64-opc-2.c | 16 +- opcodes/aarch64-opc.c | 79 +- opcodes/aarch64-tbl.h | 6 + 25 files changed, 2081 insertions(+), 1387 deletions(-) create mode 100644 gas/testsuite/gas/aarch64/dfb.d create mode 100644 gas/testsuite/gas/aarch64/dfb.s create mode 100644 gas/testsuite/gas/aarch64/v8-r-bad-sysregs.d create mode 100644 gas/testsuite/gas/aarch64/v8-r-bad-sysregs.l create mode 100644 gas/testsuite/gas/aarch64/v8-r-bad-sysregs.s create mode 100644 gas/testsuite/gas/aarch64/v8-r-sysregs-need-arch.d create mode 100644 gas/testsuite/gas/aarch64/v8-r-sysregs-need-arch.l create mode 100644 gas/testsuite/gas/aarch64/v8-r-sysregs.d create mode 100644 gas/testsuite/gas/aarch64/v8-r-sysregs.s