This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_cross/gnu-master-aarch64-build_cross in repository toolchain/ci/binutils-gdb.
from d9d9d8ef8c [binutils] Handle absolute DW_AT_dwo_name adds 933feaf37e Re: Remove arm-symbianelf adds 18b8df43bd gdb: Remove arm-symbianelf support adds 25ad1e83c8 gdb/testsuite: use "set sysroot" in gdb.multi/multi-target.exp.tcl adds 10ed138aa3 Automatic date update in version.in adds 160fe19337 gdb: adjust comment in gdb.multi/multi-target.exp.tcl adds 6db658c517 PR27291, integer overflow in bfd_get_section_contents adds 1cfcf3004e PR27290, PR27293, PR27295, various avr objdump fixes adds 31c711a2b3 PR27294, avr OOM adds 1db66e348a gdb: add obj_section function to bound_minimal_symbol adds f4be677293 gdb/testsuite: split 'maint info sections' tests to a new file adds 4790db1496 gdb: 'maint info sections' - handle the no executable case adds bf3386f0c1 gdb: change 'maint info section' to use command options adds a1670b7263 gdb/testsuite: remove old comment adds 769c253f45 Revert "ia64: Check UNDEFWEAK_NO_DYNAMIC_RELOC" adds 234b98ced2 Remove ia64 from obsolete list adds b260f8d60c Fix two Fortran regressions adds 05f68f52ef [gdb/symtab] Handle DW_FORM_strx in form_requires_reprocessing adds a5a310d616 Automatic date update in version.in adds d60f79984a [binutils] Print DWO ID adds 95abb3944c [binutils] Fix printing of .debug_str_offsets adds 528a4f87c6 [binutils] Fix typo in comment in dwarf.h adds 3c1d41015b gas testsuite: adjust recently added tests for hppa adds 8f054a7a5a binutils test pr25662: don't use single character labels adds 17e04eff81 binutils testsuite: replace unresolved with unsupported adds 96df3e28b8 gdb/fortran: support ALLOCATED builtin adds c46b706620 Change the readelf and objdump programs so that they will au [...] adds c054dcd552 Minor constification in gdbreplay
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 23 ++ bfd/config.bfd | 1 - bfd/elf32-avr.c | 16 +- bfd/elfnn-ia64.c | 20 +- bfd/section.c | 6 +- bfd/version.h | 2 +- binutils/ChangeLog | 72 +++++ binutils/NEWS | 7 + binutils/config.in | 3 + binutils/configure | 29 +- binutils/configure.ac | 14 + binutils/doc/binutils.texi | 16 +- binutils/doc/debug.options.texi | 11 + binutils/dwarf.c | 22 +- binutils/dwarf.h | 2 +- binutils/objdump.c | 66 +++-- binutils/od-elf32_avr.c | 66 +++-- binutils/readelf.c | 15 +- binutils/testsuite/binutils-all/ar.exp | 22 +- binutils/testsuite/binutils-all/compress.exp | 6 +- binutils/testsuite/binutils-all/objcopy.exp | 22 +- binutils/testsuite/binutils-all/objdump.exp | 4 +- binutils/testsuite/binutils-all/pr25662.s | 4 +- binutils/testsuite/binutils-all/readelf.exp | 40 +-- gas/ChangeLog | 19 ++ gas/NEWS | 2 + gas/testsuite/gas/all/pr27381.err | 4 +- gas/testsuite/gas/all/pr27381.s | 2 +- gas/testsuite/gas/all/pr27384.err | 6 +- gas/testsuite/gas/all/pr27384.s | 2 +- gas/testsuite/gas/elf/pr27355.err | 10 +- gas/testsuite/gas/mach-o/sections-1.d | 2 +- gas/testsuite/gas/xgate/insns-dwarf2.d | 2 +- gdb/ChangeLog | 76 +++++ gdb/Makefile.in | 2 - gdb/NEWS | 9 + gdb/arm-symbian-tdep.c | 132 --------- gdb/breakpoint.c | 2 +- gdb/configure.tgt | 6 - gdb/doc/ChangeLog | 5 + gdb/doc/gdb.texinfo | 29 +- gdb/dwarf2/attribute.c | 3 +- gdb/f-exp.y | 1 + gdb/f-lang.c | 21 ++ gdb/maint.c | 324 ++++++++++++--------- gdb/minsyms.c | 2 +- gdb/minsyms.h | 7 + gdb/osabi.c | 1 - gdb/osabi.h | 1 - gdb/parse.c | 2 +- gdb/printcmd.c | 2 +- gdb/std-operator.def | 1 + gdb/testsuite/ChangeLog | 32 ++ gdb/testsuite/gdb.ada/catch_ex_std.exp | 3 +- gdb/testsuite/gdb.base/dup-sect.exp | 1 - gdb/testsuite/gdb.base/ending-run.exp | 4 - gdb/testsuite/gdb.base/long_long.exp | 3 +- gdb/testsuite/gdb.base/maint-info-sections.exp | 184 ++++++++++++ gdb/testsuite/gdb.base/maint.exp | 87 ------ gdb/testsuite/gdb.base/solib-weak.exp | 3 +- .../gdb.fortran/{completion.exp => allocated.exp} | 29 +- .../{array-slices-bad.f90 => allocated.f90} | 35 ++- gdb/testsuite/gdb.fortran/lbound-ubound.exp | 5 - gdb/testsuite/gdb.guile/scm-section-script.exp | 1 - gdb/testsuite/gdb.multi/multi-target.exp.tcl | 8 +- gdb/testsuite/gdb.python/py-section-script.exp | 1 - gdb/testsuite/lib/dwarf.exp | 1 - gdb/testsuite/lib/gdb.exp | 12 - gdbserver/ChangeLog | 4 + gdbserver/gdbreplay.cc | 4 +- ld/ChangeLog | 9 + ld/NEWS | 2 + ld/testsuite/ld-elf/sec64k.exp | 4 +- 73 files changed, 991 insertions(+), 605 deletions(-) delete mode 100644 gdb/arm-symbian-tdep.c create mode 100644 gdb/testsuite/gdb.base/maint-info-sections.exp copy gdb/testsuite/gdb.fortran/{completion.exp => allocated.exp} (55%) copy gdb/testsuite/gdb.fortran/{array-slices-bad.f90 => allocated.f90} (57%)