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/binutils-gdb.
from 81fbbaf962 Fix dwarf2read.c:dwarf2_find_containing_comp_unit's binary search adds 0ff80bf7b9 gdb/riscv: Make some target description functions constant adds 65a4b37326 gdb/riscv: Add equality operators to riscv_gdb_features adds 634494366c gdb/riscv: Create each unique target description only once adds 92528b6772 gdb/riscv: Add read_description method for riscv_linux_nat_target adds 27c634e0ed GAS/MIPS: Add `-mfix-r5900' option for the R5900 short loop erratum adds f8eb6a9e89 Update the conditionals in fbsd-nat.h so they are always honored. adds 4717cec4fe Fix leak in linespec parser adds 93579f6f90 Use kinfo_getfile to implement fdwalk on FreeBSD. adds 35d1b0784a Automatic date update in version.in adds 0acc7632bb PR23938, should not free memory alloced in obstack by free() adds 64d27cfc97 [gdb/testsuite] Add gdb-caching-proc.exp testcase adds 726bd37d6c PR23945, NULL pointer dereference in readelf.c:slurp_hppa_un [...] adds 4770fb94ee PR23946, illegal memory access in readelf.c:slurp_ia64_unwind_table adds b44ee3a8cf x86: Delay setting the iplt section alignment
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 9 +++ bfd/elfxx-x86.c | 30 ++++++-- bfd/elfxx-x86.h | 3 + bfd/version.h | 2 +- binutils/ChangeLog | 15 ++++ binutils/readelf.c | 44 +++++++++-- gas/ChangeLog | 38 ++++++++++ gas/config/obj-coff.c | 2 +- gas/config/obj-elf.c | 2 +- gas/config/obj-som.c | 2 +- gas/config/tc-mips.c | 25 ++++++- gas/doc/as.texi | 9 +++ gas/doc/c-mips.texi | 8 ++ gas/read.h | 2 +- gas/stabs.c | 79 ++++++++++---------- gas/testsuite/gas/all/gas.exp | 2 + gas/testsuite/gas/all/pr23938.s | 2 + gas/testsuite/gas/mips/mips.exp | 2 + gas/testsuite/gas/mips/r5900-fix.d | 30 ++++++++ gas/testsuite/gas/mips/r5900-fix.s | 40 ++++++++++ gas/testsuite/gas/mips/r5900-no-fix.d | 13 ++++ gas/testsuite/gas/mips/r5900-no-fix.s | 17 +++++ gdb/ChangeLog | 64 ++++++++++++++++ gdb/arch/riscv.c | 33 +++++++- gdb/arch/riscv.h | 24 +++++- gdb/common/filestuff.c | 24 ++++++ gdb/fbsd-nat.c | 19 ++++- gdb/fbsd-nat.h | 3 +- gdb/linespec.c | 38 ++++------ gdb/riscv-linux-nat.c | 38 ++++++++++ gdb/riscv-tdep.c | 6 +- gdb/testsuite/ChangeLog | 4 + gdb/testsuite/gdb.base/gdb-caching-proc.exp | 112 ++++++++++++++++++++++++++++ ld/ChangeLog | 13 ++++ ld/testsuite/ld-i386/i386.exp | 1 + ld/testsuite/ld-i386/pr23930.d | 11 +++ ld/testsuite/ld-x86-64/pr23930-32.t | 10 +++ ld/testsuite/ld-x86-64/pr23930-x32.d | 11 +++ ld/testsuite/ld-x86-64/pr23930.d | 11 +++ ld/testsuite/ld-x86-64/pr23930.t | 10 +++ ld/testsuite/ld-x86-64/pr23930a.s | 7 ++ ld/testsuite/ld-x86-64/pr23930b.s | 14 ++++ ld/testsuite/ld-x86-64/x86-64.exp | 2 + 43 files changed, 736 insertions(+), 95 deletions(-) create mode 100644 gas/testsuite/gas/all/pr23938.s create mode 100644 gas/testsuite/gas/mips/r5900-fix.d create mode 100644 gas/testsuite/gas/mips/r5900-fix.s create mode 100644 gas/testsuite/gas/mips/r5900-no-fix.d create mode 100644 gas/testsuite/gas/mips/r5900-no-fix.s create mode 100644 gdb/testsuite/gdb.base/gdb-caching-proc.exp create mode 100644 ld/testsuite/ld-i386/pr23930.d create mode 100644 ld/testsuite/ld-x86-64/pr23930-32.t create mode 100644 ld/testsuite/ld-x86-64/pr23930-x32.d create mode 100644 ld/testsuite/ld-x86-64/pr23930.d create mode 100644 ld/testsuite/ld-x86-64/pr23930.t create mode 100644 ld/testsuite/ld-x86-64/pr23930a.s create mode 100644 ld/testsuite/ld-x86-64/pr23930b.s