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-arm-next-allmodconfig in repository toolchain/ci/binutils-gdb.
from dcdec67858 gdb/testsuite: Fix minor bug in skip_btrace*tests procs adds 38b49e22b5 jit: minor improvement to debug logging adds 2522f049df Remove unused declaratoin from guile adds bab05c83ac Make two range_bounds bitfields unsigned adds 53a008a61e Fix creal_internal_fn comment adds 13364701d8 Automatic date update in version.in adds e9194a1a0e gdb: fix segfault in overload resolution debug output adds a992a3b010 gdb: improve debug output of function overload resolution adds ce4331325c Automatic date update in version.in adds c6ac7fc987 Implement user defined prefix. adds 643c0cbedb Test define-prefix. adds be09caf15d Allow . character as part of command names. adds bf4985257d Document define-prefix command and the use of . in command names. adds 425124817e Automatic date update in version.in adds 489dbda6a8 Correctly compute length of DW_TAG_variant_part union adds d1da6b0160 Allow using less horizontal space in TUI source window adds a2a7af0c33 Add TUI border colors adds 484c9b643c Re-highlight windows when needed during TUI startup adds 517d261dfa Fix latent bug in tui_copy_source_line adds 82e3b5645f Treat inactive TUI specially in "info win" adds 5bbd8269fa gdb/fortran: array stride support adds 11a8b1641e gdb/dwarf: Introduce dwarf2_per_cu_int_type function adds 216a7e6b9e gdb: Dynamic string length support adds 6dc4379b0d Automatic date update in version.in
No new revisions were added by this update.
Summary of changes: bfd/version.h | 2 +- gdb/ChangeLog | 164 ++++++++++++++++++ gdb/Makefile.in | 1 + gdb/NEWS | 25 +++ gdb/cli/cli-decode.c | 24 +-- gdb/cli/cli-script.c | 130 ++++++++++++-- gdb/cli/cli-style.c | 81 ++++++--- gdb/cli/cli-style.h | 17 +- gdb/command.h | 8 + gdb/completer.c | 10 +- gdb/doc/ChangeLog | 14 ++ gdb/doc/gdb.texinfo | 67 ++++++- gdb/dwarf2read.c | 192 +++++++++++++++++---- gdb/f-valprint.c | 10 +- gdb/gdbtypes.c | 104 +++++++++-- gdb/gdbtypes.h | 31 +++- gdb/guile/guile-internal.h | 2 - gdb/guile/scm-cmd.c | 5 +- gdb/jit.c | 5 +- gdb/python/py-cmd.c | 5 +- gdb/testsuite/ChangeLog | 22 +++ gdb/testsuite/gdb.base/define-prefix.exp | 164 ++++++++++++++++++ gdb/testsuite/gdb.base/define.exp | 25 +++ gdb/testsuite/gdb.base/setshow.exp | 2 +- gdb/testsuite/gdb.fortran/array-slices.exp | 67 +++++++ gdb/testsuite/gdb.fortran/array-slices.f90 | 70 ++++++++ .../gdb.fortran/derived-type-striding.exp | 37 ++++ .../gdb.fortran/derived-type-striding.f90 | 43 +++++ gdb/top.c | 12 ++ gdb/tui/tui-disasm.c | 2 +- gdb/tui/tui-io.c | 8 +- gdb/tui/tui-io.h | 3 + gdb/tui/tui-source.c | 15 +- gdb/tui/tui-win.c | 43 +++++ gdb/tui/tui-win.h | 3 + gdb/tui/tui-wingeneral.c | 8 + gdb/tui/tui-winsource.c | 17 +- gdb/tui/tui-winsource.h | 10 +- gdb/tui/tui.c | 5 +- gdb/unittests/tui-selftests.c | 48 ++++++ gdb/valarith.c | 11 ++ gdb/valops.c | 53 +++--- gdb/value.c | 2 +- 43 files changed, 1406 insertions(+), 161 deletions(-) create mode 100644 gdb/testsuite/gdb.base/define-prefix.exp create mode 100644 gdb/testsuite/gdb.fortran/array-slices.exp create mode 100644 gdb/testsuite/gdb.fortran/array-slices.f90 create mode 100644 gdb/testsuite/gdb.fortran/derived-type-striding.exp create mode 100644 gdb/testsuite/gdb.fortran/derived-type-striding.f90 create mode 100644 gdb/unittests/tui-selftests.c