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 a15a5258b5b gdb: update command completion for watch, awatch, and rwatch new a5c641b57b0 gdb/fortran: Add support for Fortran array slices at the GD [...]
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: gdb/ChangeLog | 32 + gdb/Makefile.in | 1 + gdb/NEWS | 13 + gdb/doc/ChangeLog | 7 + gdb/doc/gdb.texinfo | 32 + gdb/f-array-walker.h | 265 ++++++++ gdb/f-lang.c | 712 ++++++++++++++++++--- gdb/f-lang.h | 19 +- gdb/f-valprint.c | 187 +++--- gdb/gdbtypes.c | 12 +- gdb/testsuite/ChangeLog | 10 + 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 +- 18 files changed, 1998 insertions(+), 255 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