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-lts-allnoconfig in repository toolchain/ci/binutils-gdb.
from 3747999c6b ld: Extract _bfd_elf_link_iterate_on_relocs adds bc2e7c7daa gdb: testsuite: show print array-indexes after set in arrayidx.exp adds 24fe764c8a Add _sigsys info to siginfo struct adds 249f1cf8e6 Add explicit check for nullptr to target_announce_attach adds 038d8b4635 gdb/hurd: handle inferiors exiting adds 9ef776290f Automatic date update in version.in adds 4bb12b295a Automatic date update in version.in adds a42a74331c Reduce use of unfiltered output in Darwin code adds 4cfa9e3f28 gdb: add Tiezhu Yang to MAINTAINERS adds 3c5038247c XCOFF: add support for TLS relocations on hidden symbols adds 892c10d3d1 Automatic date update in version.in adds 9ed5be5650 gdbsupport: regenerate Makefile.in adds d02f2788c3 gas/doc: mention quoted symbol names adds c4a8df19ba Fix multiple problems with DLL generation. adds d1b69c506f ar: Add --thin for creating thin archives adds e66b7536b7 Automatic date update in version.in adds ff656e2e1c gdb: testsuite: fix failed testcases in gdb.base/charset.exp adds 295114a64f gdb: testsuite: fix wrong comment in gdb.base/charset.c new b02db37812 Set SEC_ELF_REVERSE_COPY earlier new c4f5871457 objdump, readelf: Emit "CU:" format only when wide output is [...]
The 2 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/coff-rs6000.c | 33 +++--- bfd/coff64-rs6000.c | 2 +- bfd/elflink.c | 42 +++----- bfd/version.h | 2 +- bfd/xcofflink.c | 55 ++++++++-- binutils/ChangeLog | 14 +++ binutils/NEWS | 4 + binutils/ar.c | 4 +- binutils/dlltool.c | 20 +++- binutils/doc/binutils.texi | 15 ++- binutils/dwarf.c | 2 +- binutils/testsuite/binutils-all/ar.exp | 17 +++ binutils/testsuite/binutils-all/dw5.W | 2 +- binutils/testsuite/binutils-all/objdump.WL | 2 +- gas/config/tc-ppc.c | 32 +++--- gas/doc/as.texi | 5 +- gas/testsuite/gas/elf/dwarf-5-loc0.d | 2 +- gas/testsuite/gas/ppc/aix.exp | 4 +- gas/testsuite/gas/ppc/xcoff-tls-32.d | 106 +++++++++++++++++++ gas/testsuite/gas/ppc/xcoff-tls-64.d | 124 ++++++++++++++++++++++ gas/testsuite/gas/ppc/xcoff-tls.s | 57 ++++++++++ gas/testsuite/gas/ppc/xcoff-tlsm-32.d | 34 ------ gas/testsuite/gas/ppc/xcoff-tlsm-64.d | 36 ------- gas/testsuite/gas/ppc/xcoff-tlsm.s | 12 --- gdb/MAINTAINERS | 1 + gdb/darwin-nat-info.c | 128 +++++++++++------------ gdb/darwin-nat.c | 65 +++++++----- gdb/gnu-nat.c | 5 +- gdb/i386-darwin-nat.c | 28 ++--- gdb/linux-tdep.c | 7 ++ gdb/target.c | 2 +- gdb/testsuite/gdb.base/arrayidx.exp | 8 ++ gdb/testsuite/gdb.base/charset.c | 14 +-- gdbsupport/Makefile.in | 4 +- ld/ChangeLog | 9 ++ ld/ldlang.c | 10 ++ ld/pe-dll.c | 32 +++--- ld/testsuite/ld-powerpc/aix-tls-reloc-32.d | 35 ------- ld/testsuite/ld-powerpc/aix-tls-reloc-32.dd | 101 ++++++++++++++++++ ld/testsuite/ld-powerpc/aix-tls-reloc-32.dt | 18 ++++ ld/testsuite/ld-powerpc/aix-tls-reloc-64.d | 31 ------ ld/testsuite/ld-powerpc/aix-tls-reloc-64.dd | 119 +++++++++++++++++++++ ld/testsuite/ld-powerpc/aix-tls-reloc-64.dt | 23 +++++ ld/testsuite/ld-powerpc/aix-tls-reloc.s | 154 +++++++++++++++++++++------- ld/testsuite/ld-powerpc/aix52.exp | 3 +- 45 files changed, 1024 insertions(+), 399 deletions(-) create mode 100644 gas/testsuite/gas/ppc/xcoff-tls-32.d create mode 100644 gas/testsuite/gas/ppc/xcoff-tls-64.d create mode 100644 gas/testsuite/gas/ppc/xcoff-tls.s delete mode 100644 gas/testsuite/gas/ppc/xcoff-tlsm-32.d delete mode 100644 gas/testsuite/gas/ppc/xcoff-tlsm-64.d delete mode 100644 gas/testsuite/gas/ppc/xcoff-tlsm.s delete mode 100644 ld/testsuite/ld-powerpc/aix-tls-reloc-32.d create mode 100644 ld/testsuite/ld-powerpc/aix-tls-reloc-32.dd create mode 100644 ld/testsuite/ld-powerpc/aix-tls-reloc-32.dt delete mode 100644 ld/testsuite/ld-powerpc/aix-tls-reloc-64.d create mode 100644 ld/testsuite/ld-powerpc/aix-tls-reloc-64.dd create mode 100644 ld/testsuite/ld-powerpc/aix-tls-reloc-64.dt