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 in repository toolchain/ci/binutils-gdb.
from 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 new bf573a0cc6 Automatic date update in version.in
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/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 ++ gdb/testsuite/gdb.base/retval-large-struct.exp | 37 ++ 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/top.c | 7 - gdb/valprint.c | 9 +- 30 files changed, 1823 insertions(+), 69 deletions(-) create mode 100644 gdb/python/py-micmd.c create mode 100644 gdb/testsuite/gdb.base/retval-large-struct.c create mode 100644 gdb/testsuite/gdb.base/retval-large-struct.exp 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