This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/master-aarch64-bootstrap_profiled_lto_lean in repository toolchain/ci/binutils-gdb.
from 9fb67c2345 Automatic date update in version.in adds 4775334c6f Relax regexp in gdb.rust/unsized.exp adds 4f4a30bee6 Automatic date update in version.in adds b508e46bf9 PR28959, obdump doesn't disassemble mftb instruction adds d4661bf0e9 Automatic date update in version.in adds bab22d0640 [aarch64/arm] Properly extract the return value returned in memory adds 79a0742380 Correctly print subrange types in generic_value_print adds fb85cece22 Replace deprecated_target_wait_hook by observers adds 23bade95de gdb/gdbarch: remove the predicate function for gdbarch_regis [...] adds a5118a18db gdb/gdbarch: compare some fields against 0 verify_gdbarch adds 740b42ceb7 gdb/python/mi: create MI commands using python adds bf573a0cc6 Automatic date update in version.in new e34f44e1bf gdb: LoongArch: fix failed testcases in gdb.base/align-c.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/version.h | 2 +- gdb/Makefile.in | 1 + gdb/NEWS | 2 + gdb/aarch64-tdep.c | 21 +- gdb/arm-tdep.c | 32 +- gdb/doc/python.texi | 168 ++++- gdb/gdbarch-components.py | 13 +- gdb/gdbarch-gen.h | 2 - gdb/gdbarch.c | 22 +- gdb/gdbarch.py | 10 + gdb/infrun.c | 15 +- gdb/infrun.h | 5 +- gdb/interps.c | 1 - gdb/loongarch-tdep.c | 4 + gdb/mi/mi-cmds.c | 23 +- gdb/mi/mi-cmds.h | 18 + gdb/observable.c | 2 + gdb/observable.h | 6 + gdb/python/lib/gdb/__init__.py | 4 + gdb/python/py-micmd.c | 812 +++++++++++++++++++++ gdb/python/py-utils.c | 17 + gdb/python/python-internal.h | 13 + gdb/python/python.c | 3 +- gdb/target.c | 14 +- gdb/testsuite/gdb.base/retval-large-struct.c | 45 ++ .../retval-large-struct.exp} | 28 +- gdb/testsuite/gdb.dwarf2/subrange-enum.exp | 78 ++ gdb/testsuite/gdb.python/py-mi-cmd.exp | 390 ++++++++++ gdb/testsuite/gdb.python/py-mi-cmd.py | 120 +++ gdb/testsuite/gdb.rust/unsized.exp | 3 +- gdb/top.c | 7 - gdb/valprint.c | 9 +- opcodes/ppc-dis.c | 5 +- 33 files changed, 1809 insertions(+), 86 deletions(-) create mode 100644 gdb/python/py-micmd.c create mode 100644 gdb/testsuite/gdb.base/retval-large-struct.c copy gdb/testsuite/{gdb.rust/unsized.exp => gdb.base/retval-large-struct.exp} (56%) create mode 100644 gdb/testsuite/gdb.dwarf2/subrange-enum.exp create mode 100644 gdb/testsuite/gdb.python/py-mi-cmd.exp create mode 100644 gdb/testsuite/gdb.python/py-mi-cmd.py