This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from d2b584a55b [gdb/testsuite] Fix regexp in skip_opencl_tests new fc913e53c3 gdb/ada: Update some predicate functions to return bool new 721b08c686 gdb: Introduce new language field la_struct_too_deep_ellipsis new 4be290b251 gdb: Introduce new language field la_is_string_type_p new 2e62ab400f gdb: Introduce 'print max-depth' feature
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: 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 | 18 ++ 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/valprint.c | 57 +++++- gdb/valprint.h | 12 ++ 40 files changed, 1731 insertions(+), 57 deletions(-) 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