This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-arm-stable-defconfig in repository toolchain/ci/binutils-gdb.
from a907d563de Automatic date update in version.in adds d4820dac5e gold: Avoid sharing Plugin_list::iterator adds 4985fbc120 Automatic date update in version.in adds 6e1605e430 RISC-V: Update ABI to the elf_flags after parsing elf attributes. adds c9af384513 Re: dependency list for static libraries adds 904790e24f xcoff dependency list for static libraries adds a4e91c4630 elfedit false "may be used uninitialised" adds 521d4b194f Extend the DWARF decoder to display FORM names when operatin [...] new a76bf0e55d Fix regexp for development.exp new 8edca81ece aarch64: Limit Rt register number for LS64 load/store instructions new 4a3e3e2282 aarch64: Update LS64 feature with system register
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: bfd/ChangeLog | 8 ++ bfd/archive.c | 2 +- bfd/coff-rs6000.c | 35 ++++-- bfd/version.h | 2 +- binutils/ChangeLog | 21 ++++ binutils/Makefile.am | 2 +- binutils/Makefile.in | 2 +- binutils/ar.c | 4 +- binutils/dwarf.c | 150 ++++++++++++++++------- binutils/elfedit.c | 9 +- gas/ChangeLog | 51 ++++++++ gas/Makefile.am | 2 +- gas/Makefile.in | 2 +- gas/config/tc-aarch64.c | 17 +++ gas/config/tc-riscv.c | 102 +++++++++------- gas/testsuite/gas/aarch64/ls64-invalid.l | 80 +++++++++++- gas/testsuite/gas/aarch64/ls64-invalid.s | 131 +++++++++++++++++++- gas/testsuite/gas/aarch64/ls64.d | 58 +++++++++ gas/testsuite/gas/aarch64/ls64.s | 75 ++++++++---- gas/testsuite/gas/riscv/mabi-attr-01.s | 6 + gas/testsuite/gas/riscv/mabi-attr-02.s | 6 + gas/testsuite/gas/riscv/mabi-attr-03.s | 6 + gas/testsuite/gas/riscv/mabi-fail-01.d | 3 + gas/testsuite/gas/riscv/mabi-fail-01.l | 2 + gas/testsuite/gas/riscv/mabi-fail-02.d | 3 + gas/testsuite/gas/riscv/mabi-fail-02.l | 2 + gas/testsuite/gas/riscv/mabi-noabi-attr-01a.d | 10 ++ gas/testsuite/gas/riscv/mabi-noabi-attr-01b.d | 12 ++ gas/testsuite/gas/riscv/mabi-noabi-attr-02a.d | 10 ++ gas/testsuite/gas/riscv/mabi-noabi-attr-02b.d | 12 ++ gas/testsuite/gas/riscv/mabi-noabi-attr-03a.d | 10 ++ gas/testsuite/gas/riscv/mabi-noabi-attr-03b.d | 12 ++ gas/testsuite/gas/riscv/mabi-noabi-march-01.d | 10 ++ gas/testsuite/gas/riscv/mabi-noabi-march-02.d | 10 ++ gas/testsuite/gas/riscv/mabi-noabi-march-03.d | 10 ++ gold/ChangeLog | 8 ++ gold/plugin.cc | 34 +++--- include/ChangeLog | 4 + include/opcode/aarch64.h | 1 + ld/ChangeLog | 5 + ld/Makefile.am | 2 +- ld/Makefile.in | 2 +- opcodes/ChangeLog | 14 +++ opcodes/aarch64-asm-2.c | 161 ++++++++++++------------ opcodes/aarch64-dis-2.c | 169 +++++++++++++------------- opcodes/aarch64-opc-2.c | 1 + opcodes/aarch64-opc.c | 3 + opcodes/aarch64-tbl.h | 9 +- 48 files changed, 954 insertions(+), 336 deletions(-) create mode 100644 gas/testsuite/gas/aarch64/ls64.d create mode 100644 gas/testsuite/gas/riscv/mabi-attr-01.s create mode 100644 gas/testsuite/gas/riscv/mabi-attr-02.s create mode 100644 gas/testsuite/gas/riscv/mabi-attr-03.s create mode 100644 gas/testsuite/gas/riscv/mabi-fail-01.d create mode 100644 gas/testsuite/gas/riscv/mabi-fail-01.l create mode 100644 gas/testsuite/gas/riscv/mabi-fail-02.d create mode 100644 gas/testsuite/gas/riscv/mabi-fail-02.l create mode 100644 gas/testsuite/gas/riscv/mabi-noabi-attr-01a.d create mode 100644 gas/testsuite/gas/riscv/mabi-noabi-attr-01b.d create mode 100644 gas/testsuite/gas/riscv/mabi-noabi-attr-02a.d create mode 100644 gas/testsuite/gas/riscv/mabi-noabi-attr-02b.d create mode 100644 gas/testsuite/gas/riscv/mabi-noabi-attr-03a.d create mode 100644 gas/testsuite/gas/riscv/mabi-noabi-attr-03b.d create mode 100644 gas/testsuite/gas/riscv/mabi-noabi-march-01.d create mode 100644 gas/testsuite/gas/riscv/mabi-noabi-march-02.d create mode 100644 gas/testsuite/gas/riscv/mabi-noabi-march-03.d