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-stable-defconfig in repository toolchain/ci/binutils-gdb.
from 99fabbc973 Support SHF_GNU_RETAIN ELF section flag adds 058430b4a1 Re: Stop Gas from generating line info or address ranges adds e4d9e5422f PowerPC paranioa testing of symbol merging involving comdat groups adds 5d8254e185 [gdb/build] Fix -Werror=bool-compare warning in update_stati [...] adds 6b6a3e057e Fix Windows-target testing in mi_gdb_file_cmd adds cf144ec890 gdb/testsuite: use unresolved in mi_run_cmd_full adds 7cb2893dfa gdb/testsuite: gdb.mi/mi-nonstop-exit.exp: enable non-stop u [...] adds c44191f8e3 [gdb] Improve early exits for env var in debuginfod-support.c adds 5b7d45d32a Squash coverity warning for REVERSE_INULL in dump_note_entry_p adds 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 new a5c641b57b gdb/fortran: Add support for Fortran array slices at the GDB prompt
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 | 12 + gas/doc/as.texi | 14 +- gas/dwarf2dbg.c | 16 +- gas/frags.c | 42 ++ gas/frags.h | 2 + gas/read.c | 46 +- gas/testsuite/gas/elf/dwarf2-20.d | 8 +- gas/testsuite/gas/elf/dwarf2-20.s | 10 +- gas/testsuite/gas/m68hc11/indexed12.d | 4 + gdb/ChangeLog | 80 +++ gdb/Makefile.in | 1 + gdb/NEWS | 13 + gdb/breakpoint.c | 146 +++-- gdb/breakpoint.h | 6 +- gdb/debuginfod-support.c | 6 +- gdb/doc/ChangeLog | 7 + gdb/doc/gdb.texinfo | 32 + gdb/eval.c | 2 +- gdb/f-array-walker.h | 265 ++++++++ gdb/f-lang.c | 712 ++++++++++++++++++--- gdb/f-lang.h | 19 +- gdb/f-valprint.c | 187 +++--- gdb/gdbtypes.c | 14 +- gdb/linux-tdep.c | 2 +- gdb/mi/mi-cmd-break.c | 6 +- gdb/ppc-linux-nat.c | 4 +- gdb/printcmd.c | 6 +- gdb/testsuite/ChangeLog | 33 + 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/testsuite/gdb.mi/mi-nonstop-exit.exp | 6 +- gdb/testsuite/gdb.mi/mi-ns-stale-regcache.exp | 6 +- gdb/testsuite/gdb.mi/mi-nsintrall.exp | 6 +- gdb/testsuite/gdb.mi/mi-nsmoribund.exp | 6 +- gdb/testsuite/gdb.mi/mi-nsthrexec.exp | 6 +- gdb/testsuite/gdb.mi/mi-watch-nonstop.exp | 6 +- gdb/testsuite/lib/mi-support.exp | 11 +- gdb/value.h | 2 +- ld/ChangeLog | 12 + ld/testsuite/ld-powerpc/group1.d | 14 + ld/testsuite/ld-powerpc/group1.s | 10 + ld/testsuite/ld-powerpc/group1.sym | 3 + ld/testsuite/ld-powerpc/group2.d | 13 + ld/testsuite/ld-powerpc/group2.s | 9 + ld/testsuite/ld-powerpc/group2.sym | 3 + ld/testsuite/ld-powerpc/group3.s | 9 + ld/testsuite/ld-powerpc/group3.sym | 3 + ld/testsuite/ld-powerpc/powerpc.exp | 9 + 55 files changed, 2445 insertions(+), 360 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 create mode 100644 ld/testsuite/ld-powerpc/group1.d create mode 100644 ld/testsuite/ld-powerpc/group1.s create mode 100644 ld/testsuite/ld-powerpc/group1.sym create mode 100644 ld/testsuite/ld-powerpc/group2.d create mode 100644 ld/testsuite/ld-powerpc/group2.s create mode 100644 ld/testsuite/ld-powerpc/group2.sym create mode 100644 ld/testsuite/ld-powerpc/group3.s create mode 100644 ld/testsuite/ld-powerpc/group3.sym