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-stable-allyesconfig in repository toolchain/ci/binutils-gdb.
from 3050c6f4bc Make the class name in the definition match the declaration adds bdaed379e9 Add install-strip target to gdbserver adds 53af73bf5e Fix re-runs of a second inferior (PR gdb/25410) adds b5f998b2dd RISC-V: Minor cleanup for s extension support. adds 94a72be708 gdb: Include end of sequence markers in the line table adds 3d92a3e313 gdb: Don't reorder line table entries too much when sorting. adds 7ffa82e122 gdb: Better frame tracking for inline frames adds e53c0f75bd Automatic date update in version.in adds a2fedca99c Implement 'set/show exec-file-mismatch'. adds b1468492c6 Test 'set exec-file-mismatch ask|warn|off'. adds e47e48f6a7 Document 'set|show exec-file-mismatch (ask|warn|off)'
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 6 + bfd/elfxx-riscv.c | 8 +- bfd/version.h | 2 +- gdb/ChangeLog | 60 ++++ gdb/NEWS | 13 + gdb/buildsym.c | 40 +-- gdb/doc/ChangeLog | 6 + gdb/doc/gdb.texinfo | 30 ++ gdb/dwarf2read.c | 8 +- gdb/exec.c | 150 +++++++- gdb/frame.c | 9 +- gdb/gdbcore.h | 5 + gdb/gdbserver/ChangeLog | 8 + gdb/gdbserver/Makefile.in | 10 + gdb/gdbserver/aclocal.m4 | 101 ++++++ gdb/gdbserver/configure | 117 ++++++- gdb/gdbserver/configure.ac | 1 + gdb/infcmd.c | 3 + gdb/infrun.c | 16 +- gdb/inline-frame.c | 30 +- gdb/remote.c | 3 + gdb/symmisc.c | 8 +- gdb/symtab.c | 7 +- gdb/testsuite/ChangeLog | 26 ++ gdb/testsuite/gdb.base/attach.c | 1 + gdb/testsuite/gdb.base/attach.exp | 84 ++++- gdb/testsuite/gdb.base/attach2.c | 1 + gdb/testsuite/gdb.base/maint.exp | 20 +- gdb/testsuite/gdb.dwarf2/dw2-inline-many-frames.c | 158 +++++++++ .../gdb.dwarf2/dw2-inline-many-frames.exp | 379 +++++++++++++++++++++ gdb/testsuite/gdb.dwarf2/dw2-inline-stepping.c | 45 +++ gdb/testsuite/gdb.dwarf2/dw2-inline-stepping.exp | 146 ++++++++ gdb/testsuite/gdb.dwarf2/dw2-ranges-base.exp | 22 ++ gdb/testsuite/gdb.multi/multi-re-run-1.c | 61 ++++ gdb/testsuite/gdb.multi/multi-re-run-2.c | 61 ++++ gdb/testsuite/gdb.multi/multi-re-run.exp | 115 +++++++ gdb/thread.c | 5 +- 37 files changed, 1678 insertions(+), 87 deletions(-) create mode 100644 gdb/testsuite/gdb.dwarf2/dw2-inline-many-frames.c create mode 100644 gdb/testsuite/gdb.dwarf2/dw2-inline-many-frames.exp create mode 100644 gdb/testsuite/gdb.dwarf2/dw2-inline-stepping.c create mode 100644 gdb/testsuite/gdb.dwarf2/dw2-inline-stepping.exp create mode 100644 gdb/testsuite/gdb.multi/multi-re-run-1.c create mode 100644 gdb/testsuite/gdb.multi/multi-re-run-2.c create mode 100644 gdb/testsuite/gdb.multi/multi-re-run.exp