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-allnoconfig in repository toolchain/ci/binutils-gdb.
from c4a23bf878 Add support for the MVE VMOV instruction to the ARM assemble [...] adds 4acfdd20c9 gdb: Add new -n flag to some info commands adds ec1b0fbb8d Improve the DWARF decoder's ability to describe the DW_AT_di [...] adds 550105b779 Fix compiler warning in linux-namespaces.c adds 72dd1784ef Automatic date update in version.in adds a1c110a3fe Add a --source-comment=<text> option to objdump which provid [...] adds fa463e9fc6 Add an option to objcopy to change the alignment of sections. adds 1f20c35ea4 gdb/fortran: Implement la_print_typedef for Fortran adds d8f27c6018 gdb/fortran: Don't include module symbols when searching for types
No new revisions were added by this update.
Summary of changes: bfd/version.h | 2 +- binutils/ChangeLog | 51 +++ binutils/NEWS | 5 + binutils/doc/binutils.texi | 21 +- binutils/dwarf.c | 414 +++++++++++++++++++-- binutils/objcopy.c | 50 ++- binutils/objdump.c | 18 +- binutils/testsuite/binutils-all/dwarf-attributes.S | 8 +- binutils/testsuite/binutils-all/dwarf-attributes.W | 72 ++-- binutils/testsuite/binutils-all/objdump.exp | 40 ++ gdb/ChangeLog | 58 +++ gdb/NEWS | 5 + gdb/cli/cli-utils.c | 65 +--- gdb/cli/cli-utils.h | 39 +- gdb/doc/ChangeLog | 5 + gdb/doc/gdb.texinfo | 15 +- gdb/f-lang.c | 2 +- gdb/f-lang.h | 5 + gdb/f-typeprint.c | 11 + gdb/nat/linux-namespaces.c | 2 +- gdb/python/python.c | 4 +- gdb/stack.c | 77 +++- gdb/symtab.c | 123 +++++- gdb/symtab.h | 3 +- gdb/testsuite/ChangeLog | 20 + gdb/testsuite/gdb.base/info-fun.exp | 97 ++--- gdb/testsuite/gdb.base/info-var-f1.c | 24 ++ gdb/testsuite/gdb.base/info-var-f2.c | 26 ++ gdb/testsuite/gdb.base/info-var.exp | 60 +++ gdb/testsuite/gdb.base/info-var.h | 18 + gdb/testsuite/gdb.fortran/info-types.exp | 47 +++ gdb/testsuite/gdb.fortran/info-types.f90 | 36 ++ gdb/testsuite/lib/fortran.exp | 12 + 33 files changed, 1186 insertions(+), 249 deletions(-) create mode 100644 gdb/testsuite/gdb.base/info-var-f1.c create mode 100644 gdb/testsuite/gdb.base/info-var-f2.c create mode 100644 gdb/testsuite/gdb.base/info-var.exp create mode 100644 gdb/testsuite/gdb.base/info-var.h create mode 100644 gdb/testsuite/gdb.fortran/info-types.exp create mode 100644 gdb/testsuite/gdb.fortran/info-types.f90