This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk_tx1/gnu-master-aarch64-spec2k6-Os_LTO in repository toolchain/ci/binutils-gdb.
from f6720b1cfe config/debuginfod.m4: Use PKG_CHECK_MODULES adds 876518dd0a [gdb/symtab] Ignore zero line table entries adds 719251fee1 Automatic date update in version.in adds e79eb02f2f gdb/fortran: resolve dynamic types when readjusting after an [...] adds a237ab1af0 Automatic date update in version.in adds 3abf975826 MIPS/binutils/testsuite: Correct mips.exp test ABI/emul/endi [...] adds 05a6b8c28b Don't unnecessarily redefine 'socklen_t' type in MinGW builds. adds 555adca2e3 libctf: compilation failure on MinGW due to missing errno values adds 9e3d7d43cf Automatic date update in version.in adds 95420d3027 [gdb/build] Fix typo sys/sockets.h -> sys/socket.h adds 608d61c202 doc: Replace preceeded with preceded adds afd2ea2362 [GOLD] Power10 stub selection adds 344e66534e ctf test ERROR: $target-cc does not exist adds 8fab9282e5 Prevent strange "section mentioned in a -j option but not found" adds 93fd13c704 Accept --just-symbols symbols as absolute for xcoff adds 32377a8037 Allow new just-symbols test to run on XCOFF and PE adds a4089f524f Remove unused declaration from gcore.h adds ddce17585c Use SIGTRAP si_code values for all FreeBSD architectures on [...] new cf0ae6e41f Automatic date update in version.in new c38166b376 Re: Allow new just-symbols test to run on XCOFF and PE new f437dadd89 More just-syms changes
The 3 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/ChangeLog | 7 + bfd/version.h | 2 +- bfd/xcofflink.c | 18 +- binutils/ChangeLog | 45 ++ binutils/doc/binutils.texi | 8 +- binutils/objdump.c | 4 +- binutils/testsuite/binutils-all/mips/mips-ase-1.d | 1 - binutils/testsuite/binutils-all/mips/mips-ase-2.d | 1 - binutils/testsuite/binutils-all/mips/mips-ase-3.d | 1 - .../testsuite/binutils-all/mips/mips-note-2-n32.d | 1 - .../testsuite/binutils-all/mips/mips-note-2-n64.d | 1 - binutils/testsuite/binutils-all/mips/mips-note-2.d | 1 - .../testsuite/binutils-all/mips/mips-note-2r-n32.d | 1 - .../testsuite/binutils-all/mips/mips-note-2r-n64.d | 1 - .../testsuite/binutils-all/mips/mips-note-2r.d | 1 - .../testsuite/binutils-all/mips/mips-reginfo-n32.d | 1 - .../testsuite/binutils-all/mips/mips-reginfo.d | 1 - binutils/testsuite/binutils-all/mips/mips.exp | 246 +++++++- .../testsuite/binutils-all/mips/mips16-alias.d | 2 +- .../binutils-all/mips/mips16-extend-insn.d | 2 +- .../binutils-all/mips/mips16-extend-noinsn.d | 1 - .../testsuite/binutils-all/mips/mips16-noalias.d | 2 +- .../testsuite/binutils-all/mips/mips16-pcrel.d | 1 - .../testsuite/binutils-all/mips/mips16-undecoded.d | 2 +- .../binutils-all/mips/mips16e2-extend-insn.d | 2 +- .../binutils-all/mips/mips16e2-undecoded.d | 2 +- .../testsuite/binutils-all/mips/mixed-micromips.d | 2 +- .../testsuite/binutils-all/mips/mixed-mips16.d | 2 +- gas/ChangeLog | 4 + gas/doc/as.texi | 2 +- gdb/ChangeLog | 41 ++ gdb/config.in | 3 + gdb/configure | 31 +- gdb/configure.ac | 9 +- gdb/dwarf2/read.c | 5 +- gdb/fbsd-nat.h | 12 +- gdb/gcore.h | 1 - gdb/testsuite/ChangeLog | 15 + gdb/testsuite/gdb.dwarf2/dw2-line-number-zero.c | 62 ++ gdb/testsuite/gdb.dwarf2/dw2-line-number-zero.exp | 140 +++++ .../gdb.fortran/class-allocatable-array.exp | 43 ++ .../gdb.fortran/class-allocatable-array.f90 | 54 ++ gdb/testsuite/gdb.fortran/pointer-to-pointer.exp | 46 ++ gdb/testsuite/gdb.fortran/pointer-to-pointer.f90 | 34 ++ gdb/valops.c | 24 +- gdb/value.c | 23 +- gdb/value.h | 7 +- gdbserver/ChangeLog | 8 + gdbserver/config.in | 3 + gdbserver/configure | 8 +- gdbserver/configure.ac | 8 +- gold/ChangeLog | 25 + gold/options.cc | 29 + gold/options.h | 48 +- gold/powerpc.cc | 680 ++++++++++++++------- ld/ChangeLog | 24 + ld/ldlang.c | 10 +- ld/testsuite/ld-misc/just-symbols.exp | 73 ++- ld/testsuite/ld-misc/just-symbols.ld | 4 +- ld/testsuite/lib/ld-lib.exp | 24 +- libctf/ChangeLog | 7 + libctf/ctf-create.c | 4 + libctf/ctf-subr.c | 4 + 63 files changed, 1495 insertions(+), 379 deletions(-) create mode 100644 gdb/testsuite/gdb.dwarf2/dw2-line-number-zero.c create mode 100644 gdb/testsuite/gdb.dwarf2/dw2-line-number-zero.exp create mode 100644 gdb/testsuite/gdb.fortran/class-allocatable-array.exp create mode 100644 gdb/testsuite/gdb.fortran/class-allocatable-array.f90 create mode 100644 gdb/testsuite/gdb.fortran/pointer-to-pointer.exp create mode 100644 gdb/testsuite/gdb.fortran/pointer-to-pointer.f90