This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu/gnu-master-aarch64-check_binutils in repository toolchain/ci/binutils-gdb.
from 5d7f11f0e7 [GOLD] PR27815, gold fails to build with latest GCC adds bc30a119f3 Regen cris files adds cc850f7472 Fix formatting in elf32-arm.c adds 74fd118fb9 Add range checks to local array accesses in elf32-arm.c. adds d3e52e120b Arm: Fix forward thumb references [PR gas/25235] adds 2c5731b647 Fix documentation of gdb.SYMBOL_LOC_COMMON_BLOCK adds 9495896335 Automatic date update in version.in adds fe1f847d9a RISC-V: Allow to link the objects with unknown prefixed extensions. adds ef5f598ca6 Introduce htab_delete_entry adds 3f335b75d8 i386: Replace movsb with movsxb adds 983d5689cc x86-64: Add ilp32-12 to check R_X86_64_32 for x32 new 11bb5c41eb gdb: don't zero-initialize reg_buffer contents new 50c95a739c x86: Propery check PC16 reloc overflow in 16-bit mode instructions new cc37fec878 Automatic date update in version.in new badf836a0c nds32: __builtin_strncpy bound equals destination size new 6643bb0010 readelf -w and --debug-dump option help new 749369c430 gdb: change dwarf_die_debug to bool new 3a706c17ee Revert "gdb: change dwarf_die_debug to bool"
The 7 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 | 47 +++ bfd/elf32-arm.c | 494 ++++++++++++++++++------------- bfd/elf32-i386.c | 23 +- bfd/elf64-x86-64.c | 12 + bfd/elfnn-riscv.c | 2 + bfd/elfxx-riscv.c | 3 +- bfd/elfxx-riscv.h | 1 + bfd/elfxx-x86.c | 9 +- bfd/elfxx-x86.h | 6 + bfd/version.h | 2 +- binutils/ChangeLog | 11 + binutils/readelf.c | 12 +- gas/ChangeLog | 39 +++ gas/config/tc-arm.c | 11 +- gas/config/tc-i386.c | 55 ++-- gas/config/tc-nds32.c | 16 +- gas/config/tc-riscv.c | 1 + gas/doc/c-i386.texi | 2 +- gas/testsuite/gas/arm/pr25235.d | 24 ++ gas/testsuite/gas/arm/pr25235.s | 30 ++ gas/testsuite/gas/i386/code16-2.d | 8 + gas/testsuite/gas/i386/code16-2.s | 10 + gas/testsuite/gas/i386/i386.exp | 2 + gas/testsuite/gas/i386/x86-64-code16-2.d | 9 + gdb/ChangeLog | 16 + gdb/completer.c | 17 +- gdb/doc/ChangeLog | 4 + gdb/doc/python.texi | 4 +- gdb/dwarf2/read.c | 30 +- gdb/regcache.c | 7 +- gdb/utils.h | 9 + include/ChangeLog | 5 + include/elf/common.h | 1 + ld/ChangeLog | 16 + ld/testsuite/ld-i386/code16.d | 19 ++ ld/testsuite/ld-i386/code16.t | 7 + ld/testsuite/ld-i386/i386.exp | 1 + ld/testsuite/ld-x86-64/code16.d | 19 ++ ld/testsuite/ld-x86-64/code16.t | 7 + ld/testsuite/ld-x86-64/ilp32-12.d | 7 + ld/testsuite/ld-x86-64/ilp32-12.s | 5 + ld/testsuite/ld-x86-64/x86-64.exp | 2 + opcodes/ChangeLog | 7 + opcodes/cris-desc.c | 61 ++-- opcodes/cris-desc.h | 13 +- opcodes/cris-opc.h | 13 +- opcodes/po/POTFILES.in | 3 + 47 files changed, 783 insertions(+), 319 deletions(-) create mode 100644 gas/testsuite/gas/arm/pr25235.d create mode 100644 gas/testsuite/gas/arm/pr25235.s create mode 100644 gas/testsuite/gas/i386/code16-2.d create mode 100644 gas/testsuite/gas/i386/code16-2.s create mode 100644 gas/testsuite/gas/i386/x86-64-code16-2.d create mode 100644 ld/testsuite/ld-i386/code16.d create mode 100644 ld/testsuite/ld-i386/code16.t create mode 100644 ld/testsuite/ld-x86-64/code16.d create mode 100644 ld/testsuite/ld-x86-64/code16.t create mode 100644 ld/testsuite/ld-x86-64/ilp32-12.d create mode 100644 ld/testsuite/ld-x86-64/ilp32-12.s