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-mainline-allnoconfig in repository toolchain/binutils-gdb.
from 3d5500e958 Avoid buffer overflow in value_x_unop adds 12951a2f08 RISC-V: Add missing c.unimp instruction. adds e61667ef14 Implement the "gdb_signal_to/from_target" gdbarch methods fo [...] adds 95b1f9ac6b Fix leak in forward-search adds f746c08f26 Automatic date update in version.in adds ba85c15dab PR23937, powerpc64le local ifunc IRELATIVE relocs are wrong adds beab453223 Remove an abort in the bfd library and add a check for an in [...] adds 5f60af5d24 Fix a memory exhaustion bug when attempting to allocate room [...] adds c180496d2a Move test_target_ops to a separate file adds 3b3dac9b3f Introduce process_stratum_target adds f3d11a9a96 Convert default_child_has_foo functions to process_stratum_t [...] adds 20a7119479 Add PR number to previous delta to the bfd/ directory. adds 66b4deae03 target_ops::to_stratum -> target_ops::stratum() virtual method adds 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
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 20 +++ bfd/elf.c | 11 +- bfd/elf64-ppc.c | 3 +- bfd/elfcode.h | 5 + bfd/version.h | 2 +- gdb/ChangeLog | 191 ++++++++++++++++++++++++ gdb/Makefile.in | 2 + gdb/aix-thread.c | 5 +- gdb/arch/riscv.c | 33 ++++- gdb/arch/riscv.h | 24 ++- gdb/bfd-target.c | 3 +- gdb/bsd-kvm.c | 6 +- gdb/bsd-uthread.c | 5 +- gdb/corelow.c | 8 +- gdb/dwarf2read.c | 3 +- gdb/exec.c | 5 +- gdb/fbsd-tdep.c | 285 ++++++++++++++++++++++++++++++++++++ gdb/gdbarch-selftests.c | 3 +- gdb/inf-child.c | 35 ----- gdb/inf-child.h | 17 +-- gdb/linux-thread-db.c | 9 +- gdb/make-target-delegates | 4 +- gdb/process-stratum-target.c | 85 +++++++++++ gdb/process-stratum-target.h | 56 +++++++ gdb/ravenscar-thread.c | 12 +- gdb/record-btrace.c | 5 +- gdb/record-full.c | 5 +- gdb/record.c | 8 +- gdb/regcache.c | 5 +- gdb/remote-sim.c | 15 +- gdb/remote.c | 14 +- gdb/riscv-linux-nat.c | 38 +++++ gdb/riscv-tdep.c | 6 +- gdb/sol-thread.c | 5 +- gdb/source.c | 2 +- gdb/spu-multiarch.c | 5 +- gdb/target-delegates.c | 12 +- gdb/target.c | 153 ++++--------------- gdb/target.h | 73 +-------- gdb/test-target.c | 39 +++++ gdb/test-target.h | 65 ++++++++ gdb/tracefile.c | 5 - gdb/tracefile.h | 6 +- ld/ChangeLog | 6 + ld/testsuite/ld-powerpc/powerpc.exp | 1 + ld/testsuite/ld-powerpc/pr23937.d | 10 ++ ld/testsuite/ld-powerpc/pr23937.s | 65 ++++++++ opcodes/ChangeLog | 5 + opcodes/riscv-opc.c | 3 +- 49 files changed, 1041 insertions(+), 342 deletions(-) create mode 100644 gdb/process-stratum-target.c create mode 100644 gdb/process-stratum-target.h create mode 100644 gdb/test-target.c create mode 100644 gdb/test-target.h create mode 100644 ld/testsuite/ld-powerpc/pr23937.d create mode 100644 ld/testsuite/ld-powerpc/pr23937.s