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-mainline-defconfig in repository toolchain/ci/binutils-gdb.
from 6266b411ce Automatic date update in version.in adds b3ff61f815 gdb: make use of skip_to_space and skip_spaces adds 2e362716fc gdb: convert some function arguments from int to bool adds a15a5258b5 gdb: update command completion for watch, awatch, and rwatch adds a5c641b57b gdb/fortran: Add support for Fortran array slices at the GDB prompt adds 70125a45e4 gdb: remove `other` parameter in read_core_file_mappings parameter adds a5adb8f3b4 gdb: fix format string warnings in f-lang.c adds a4eba6087d Fix a bug in the s390x linker when discarding all inpuit files. adds d5ef21c3ec gdb/s390: Correct recording of "store on condition" insns adds 24a16d8b93 gas/testsuite: Fix SHF_GNU_RETAIN tests for FreeBSD OSABIs adds f58a189583 Automatic date update in version.in
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 7 + bfd/elf64-s390.c | 5 +- bfd/version.h | 2 +- gas/ChangeLog | 7 + gas/testsuite/gas/elf/section22.d | 2 +- gas/testsuite/gas/elf/section23a.d | 2 +- gas/testsuite/gas/elf/section24a.d | 2 +- gdb/ChangeLog | 87 +++ gdb/Makefile.in | 1 + gdb/NEWS | 13 + gdb/arch-utils.c | 3 +- gdb/arch-utils.h | 3 +- gdb/breakpoint.c | 146 +++-- gdb/breakpoint.h | 6 +- gdb/corelow.c | 2 +- gdb/doc/ChangeLog | 7 + gdb/doc/gdb.texinfo | 32 + gdb/eval.c | 2 +- gdb/f-array-walker.h | 265 ++++++++ gdb/f-lang.c | 719 ++++++++++++++++++--- gdb/f-lang.h | 19 +- gdb/f-valprint.c | 187 +++--- gdb/gdbarch.c | 2 +- gdb/gdbarch.h | 4 +- gdb/gdbarch.sh | 2 +- gdb/gdbtypes.c | 12 +- gdb/linux-tdep.c | 7 +- gdb/mi/mi-cmd-break.c | 6 +- gdb/ppc-linux-nat.c | 4 +- gdb/printcmd.c | 6 +- gdb/s390-tdep.c | 17 +- gdb/testsuite/ChangeLog | 14 + gdb/testsuite/gdb.base/completion.exp | 11 + gdb/testsuite/gdb.fortran/array-slices-bad.exp | 69 ++ gdb/testsuite/gdb.fortran/array-slices-bad.f90 | 42 ++ .../gdb.fortran/array-slices-sub-slices.exp | 111 ++++ .../gdb.fortran/array-slices-sub-slices.f90 | 96 +++ gdb/testsuite/gdb.fortran/array-slices.exp | 277 ++++++-- gdb/testsuite/gdb.fortran/array-slices.f90 | 364 ++++++++++- gdb/testsuite/gdb.fortran/vla-sizeof.exp | 4 +- gdb/value.h | 2 +- 41 files changed, 2239 insertions(+), 330 deletions(-) create mode 100644 gdb/f-array-walker.h create mode 100644 gdb/testsuite/gdb.fortran/array-slices-bad.exp create mode 100644 gdb/testsuite/gdb.fortran/array-slices-bad.f90 create mode 100644 gdb/testsuite/gdb.fortran/array-slices-sub-slices.exp create mode 100644 gdb/testsuite/gdb.fortran/array-slices-sub-slices.f90