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-lts-allyesconfig in repository toolchain/ci/binutils-gdb.
from 53215f214c Non-contiguous memory regions support: Avoid calls to abort adds ac4bf06ca2 Fix seg-fault in strip when copying a file containing corrup [...] adds aef397a154 Non-contiguous memory regions support: Fix testcases after p [...] adds a9933ccf46 [gdb/testsuite] Add test-case gdb.dwarf2/break-inline-psymtab.exp adds cdf236890c Automatic date update in version.in adds 645ba68105 setup_archive parameter mismatch adds b966f55ffa Invalid read in process_netbsd_elf_note adds 1cb7d8b1af readelf leak in process_archive adds 81a65eb338 Don't use bfd.h in binutils/elfcomm.c adds effc14f54c Additional c99 elfxx-riscv.c fix adds d8c8b84859 [gdb/testsuite] Fix gdb.opt/inline-locals.exp KFAILs new 724fd9ba43 gdb: Restructure the completion_tracker class new 19a2740f7f gdb: Remove C++ symbol aliases from completion list new 6b8c53f2f1 gdb/testsuite/fortran: Add mixed language stack test new cada5fc921 gdb: Handle W and X remote packets without giving a warning
The 4 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 | 10 + bfd/elf.c | 131 +++++++++---- bfd/elfxx-riscv.c | 3 +- bfd/version.h | 2 +- binutils/ChangeLog | 24 +++ binutils/elfcomm.c | 56 +++--- binutils/elfcomm.h | 6 +- binutils/readelf.c | 183 ++++++++++-------- gdb/ChangeLog | 48 +++++ gdb/completer.c | 209 ++++++++++++++++++--- gdb/completer.h | 45 +++-- gdb/remote.c | 46 ++++- gdb/symtab.c | 21 +++ gdb/testsuite/ChangeLog | 28 +++ gdb/testsuite/gdb.dwarf2/break-inline-psymtab-2.c | 33 ++++ gdb/testsuite/gdb.dwarf2/break-inline-psymtab.c | 24 +++ gdb/testsuite/gdb.dwarf2/break-inline-psymtab.exp | 36 ++++ gdb/testsuite/gdb.fortran/mixed-lang-stack.c | 37 ++++ gdb/testsuite/gdb.fortran/mixed-lang-stack.cpp | 85 +++++++++ gdb/testsuite/gdb.fortran/mixed-lang-stack.exp | 163 ++++++++++++++++ gdb/testsuite/gdb.fortran/mixed-lang-stack.f90 | 116 ++++++++++++ .../gdb.linespec/cp-completion-aliases.cc | 73 +++++++ .../gdb.linespec/cp-completion-aliases.exp | 54 ++++++ gdb/testsuite/gdb.opt/inline-locals.exp | 26 ++- gdb/testsuite/gdb.server/exit-multiple-threads.c | 202 ++++++++++++++++++++ gdb/testsuite/gdb.server/exit-multiple-threads.exp | 136 ++++++++++++++ ld/ChangeLog | 5 + ld/testsuite/ld-arm/non-contiguous-arm4.d | 2 +- ld/testsuite/ld-powerpc/non-contiguous-powerpc.d | 2 +- 29 files changed, 1588 insertions(+), 218 deletions(-) create mode 100644 gdb/testsuite/gdb.dwarf2/break-inline-psymtab-2.c create mode 100644 gdb/testsuite/gdb.dwarf2/break-inline-psymtab.c create mode 100644 gdb/testsuite/gdb.dwarf2/break-inline-psymtab.exp create mode 100644 gdb/testsuite/gdb.fortran/mixed-lang-stack.c create mode 100644 gdb/testsuite/gdb.fortran/mixed-lang-stack.cpp create mode 100644 gdb/testsuite/gdb.fortran/mixed-lang-stack.exp create mode 100644 gdb/testsuite/gdb.fortran/mixed-lang-stack.f90 create mode 100644 gdb/testsuite/gdb.linespec/cp-completion-aliases.cc create mode 100644 gdb/testsuite/gdb.linespec/cp-completion-aliases.exp create mode 100644 gdb/testsuite/gdb.server/exit-multiple-threads.c create mode 100644 gdb/testsuite/gdb.server/exit-multiple-threads.exp