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-next-defconfig in repository toolchain/ci/binutils-gdb.
from 637d4b78c5 Automatic date update in version.in adds 4a90ce955e S12Z: Opcodes: Fix crash when trying to decode a truncated o [...] adds d2b584a55b [gdb/testsuite] Fix regexp in skip_opencl_tests adds fc913e53c3 gdb/ada: Update some predicate functions to return bool adds 721b08c686 gdb: Introduce new language field la_struct_too_deep_ellipsis adds 4be290b251 gdb: Introduce new language field la_is_string_type_p adds 2e62ab400f gdb: Introduce 'print max-depth' feature new 5acad1a182 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 +- gas/ChangeLog | 6 + gas/testsuite/gas/s12z/s12z.exp | 1 + gas/testsuite/gas/s12z/truncated.d | 17 ++ gas/testsuite/gas/s12z/truncated.s | 3 + gdb/ChangeLog | 85 +++++++++ gdb/NEWS | 9 + gdb/ada-lang.c | 12 +- gdb/ada-lang.h | 4 +- gdb/c-lang.c | 52 +++++- gdb/c-lang.h | 5 + gdb/cp-valprint.c | 80 +++++---- gdb/d-lang.c | 4 +- gdb/doc/ChangeLog | 8 + gdb/doc/gdb.texinfo | 58 +++++++ gdb/doc/guile.texi | 3 + gdb/doc/python.texi | 8 + gdb/f-lang.c | 15 +- gdb/go-lang.c | 14 +- gdb/guile/scm-pretty-print.c | 19 +- gdb/language.c | 22 ++- gdb/language.h | 13 ++ gdb/m2-lang.c | 25 ++- gdb/objc-lang.c | 4 +- gdb/opencl-lang.c | 4 +- gdb/p-lang.c | 14 +- gdb/python/py-prettyprint.c | 15 +- gdb/python/py-value.c | 7 +- gdb/rust-lang.c | 24 ++- gdb/testsuite/ChangeLog | 22 +++ gdb/testsuite/gdb.base/max-depth.c | 232 +++++++++++++++++++++++++ gdb/testsuite/gdb.base/max-depth.exp | 165 ++++++++++++++++++ gdb/testsuite/gdb.fortran/max-depth.exp | 41 +++++ gdb/testsuite/gdb.fortran/max-depth.f90 | 42 +++++ gdb/testsuite/gdb.go/max-depth.exp | 40 +++++ gdb/testsuite/gdb.go/max-depth.go | 41 +++++ gdb/testsuite/gdb.modula2/max-depth.c | 45 +++++ gdb/testsuite/gdb.modula2/max-depth.exp | 37 ++++ gdb/testsuite/gdb.python/py-format-string.exp | 21 +++ gdb/testsuite/gdb.python/py-nested-maps.c | 130 ++++++++++++++ gdb/testsuite/gdb.python/py-nested-maps.exp | 238 ++++++++++++++++++++++++++ gdb/testsuite/gdb.python/py-nested-maps.py | 135 +++++++++++++++ gdb/testsuite/lib/gdb.exp | 30 ++++ gdb/testsuite/lib/opencl.exp | 2 +- gdb/valprint.c | 57 +++++- gdb/valprint.h | 12 ++ opcodes/ChangeLog | 4 + opcodes/s12z-opc.c | 2 +- 48 files changed, 1769 insertions(+), 60 deletions(-) create mode 100644 gas/testsuite/gas/s12z/truncated.d create mode 100644 gas/testsuite/gas/s12z/truncated.s create mode 100644 gdb/testsuite/gdb.base/max-depth.c create mode 100644 gdb/testsuite/gdb.base/max-depth.exp create mode 100644 gdb/testsuite/gdb.fortran/max-depth.exp create mode 100644 gdb/testsuite/gdb.fortran/max-depth.f90 create mode 100644 gdb/testsuite/gdb.go/max-depth.exp create mode 100644 gdb/testsuite/gdb.go/max-depth.go create mode 100644 gdb/testsuite/gdb.modula2/max-depth.c create mode 100644 gdb/testsuite/gdb.modula2/max-depth.exp create mode 100644 gdb/testsuite/gdb.python/py-nested-maps.c create mode 100644 gdb/testsuite/gdb.python/py-nested-maps.exp create mode 100644 gdb/testsuite/gdb.python/py-nested-maps.py