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-defconfig in repository toolchain/ci/binutils-gdb.
from cc4c4f40a2 Re: vms buffer overflows and large memory allocation adds 02f7e7eed9 Archive sanity checks adds 3312f67c09 ld: Add PR ld/25593 tests adds 0dce428051 [gdb] Don't set initial language if set manually adds cceb53b884 [binutils][arm] Arm CDE CX*A instructions allow condition code adds d4c9a4f87d Move more declarations from dwarf2/loc.h to dwarf2/read.h adds b65ce56541 gdb: print thread names in thread apply command output adds 0d79cdc494 Add debuginfod support to GDB adds edfe0a0c65 Remove casts from dwarf2/index-write.c adds b83470bfa7 Specialize partial_symtab for DWARF include files adds d0adf5451e Automatic date update in version.in adds ff69a8949b bfd_stat_arch_elt buffer overflow adds 05f52dc2e1 _bfd_xcoff_read_ar_hdr tidy new c8d4f6dfd9 [gdb/testsuite] Fix spawn in tuiterm.exp
The 1 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 | 26 +++ bfd/archive.c | 156 ++++++++------- bfd/bfd-in2.h | 3 +- bfd/bfd.c | 3 +- bfd/coff-rs6000.c | 48 ++--- bfd/version.h | 2 +- gas/ChangeLog | 10 + gas/config/tc-arm.c | 30 +-- gas/testsuite/gas/arm/cde-scalar.s | 8 +- gas/testsuite/gas/arm/cde-warnings.l | 18 +- gas/testsuite/gas/arm/cde-warnings.s | 30 +-- gdb/ChangeLog | 59 ++++++ gdb/Makefile.in | 4 +- gdb/NEWS | 14 ++ gdb/README | 9 + gdb/config.in | 3 + gdb/configure | 182 +++++++++++++----- gdb/configure.ac | 6 +- gdb/debuginfod-support.c | 155 +++++++++++++++ gdb/debuginfod-support.h | 62 ++++++ gdb/doc/gdb.texinfo | 8 + gdb/dwarf2/index-write.c | 26 +-- gdb/dwarf2/loc.h | 18 -- gdb/dwarf2/read.c | 110 +++++++---- gdb/dwarf2/read.h | 33 ++++ gdb/elfread.c | 32 ++- gdb/source.c | 30 +++ gdb/symfile.c | 2 + gdb/testsuite/ChangeLog | 17 ++ gdb/testsuite/gdb.base/persistent-lang.cc | 22 +++ gdb/testsuite/gdb.base/persistent-lang.exp | 39 ++++ .../gdb.debuginfod/fetch_src_and_symbols.exp | 214 +++++++++++++++++++++ gdb/testsuite/gdb.debuginfod/main.c | 25 +++ gdb/testsuite/lib/tuiterm.exp | 6 +- gdb/thread.c | 16 +- gdb/top.c | 10 + ld/ChangeLog | 12 ++ ld/testsuite/ld-plugin/lto.exp | 26 +++ ld/testsuite/ld-plugin/pr25593.d | 5 + ld/testsuite/ld-plugin/pr25593a-1.c | 12 ++ ld/testsuite/ld-plugin/pr25593a-2.c | 1 + ld/testsuite/ld-plugin/pr25593b.c | 7 + .../{ld-elf/pr23162a.c => ld-plugin/pr25593c.c} | 0 ld/testsuite/ld-plugin/{lto-17a.c => pr25593d.c} | 0 ld/testsuite/ld-plugin/pr25593e.c | 4 + 45 files changed, 1231 insertions(+), 272 deletions(-) create mode 100644 gdb/debuginfod-support.c create mode 100644 gdb/debuginfod-support.h create mode 100644 gdb/testsuite/gdb.base/persistent-lang.cc create mode 100644 gdb/testsuite/gdb.base/persistent-lang.exp create mode 100644 gdb/testsuite/gdb.debuginfod/fetch_src_and_symbols.exp create mode 100644 gdb/testsuite/gdb.debuginfod/main.c create mode 100644 ld/testsuite/ld-plugin/pr25593.d create mode 100644 ld/testsuite/ld-plugin/pr25593a-1.c create mode 100644 ld/testsuite/ld-plugin/pr25593a-2.c create mode 100644 ld/testsuite/ld-plugin/pr25593b.c copy ld/testsuite/{ld-elf/pr23162a.c => ld-plugin/pr25593c.c} (100%) copy ld/testsuite/ld-plugin/{lto-17a.c => pr25593d.c} (100%) create mode 100644 ld/testsuite/ld-plugin/pr25593e.c