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-aarch64-lts-allmodconfig in repository toolchain/ci/binutils-gdb.
from 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 [...] adds a76bf0e55d Fix regexp for development.exp adds 8edca81ece aarch64: Limit Rt register number for LS64 load/store instructions adds 4a3e3e2282 aarch64: Update LS64 feature with system register adds 9372689d72 Add support for the LMBD (left-most bit detect) instruction [...] adds 5cbc0eb01a asan: vms-alpha: stack buffer overflow adds 0541201782 gas: improve reproducibility for stabs debugging data format adds 3e50c9d9c9 Revert delta accidentally applied with commit 9372689d72f902 [...]
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 12 ++ bfd/archive.c | 2 +- bfd/coff-rs6000.c | 35 ++++-- bfd/version.h | 2 +- bfd/vms-alpha.c | 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 | 62 ++++++++++ gas/Makefile.am | 2 +- gas/Makefile.in | 2 +- gas/config/obj-elf.c | 3 +- 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/pru/misc.d | 3 + gas/testsuite/gas/pru/misc.s | 3 + 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 ++ include/ChangeLog | 8 ++ include/opcode/aarch64.h | 1 + include/opcode/pru.h | 34 +++--- ld/ChangeLog | 5 + ld/Makefile.am | 2 +- ld/Makefile.in | 2 +- opcodes/ChangeLog | 19 +++ 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 +- opcodes/pru-opc.c | 2 + 52 files changed, 982 insertions(+), 337 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