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/llvm-master-aarch64-spec2k6-Oz_LTO in repository toolchain/ci/binutils-gdb.
from 0e26741636 gdb/riscv: delete target descriptions when gdb exits adds dea6fdedf9 Automatic date update in version.in adds aee91db3eb Remove "linux_multi_process" global adds 6095ca5257 Automatic date update in version.in adds e10a07b32d Power10 stub selection adds 4609ada49f ld: optionally emit _etext last, before .data adds 2585b7a5ce x86: Change PLT32 reloc against section to PC32 adds 9e6b97601b gold: Update x86-64 tests adds 53752b85ac gold: Update x32 test adds 49bcc13929 Automatic date update in version.in adds 693bec1ed6 ix86: enable more ELF tests for VxWorks adds 48ef937e91 x86: honor absolute section when emitting code adds 750e4bf70f gas: generalize comment character escaping recognition adds b3983e5f53 x86: handle SVR4 escaped binary operators new 6e22f11784 [gdb/testsuite] Bail out after gdb_start error in gdb.thread [...] new c06ad8b573 [gdb/testsuite] Fix valgrind-infcall-2.exp without libc debug info new 98b3697bcd x86: Update PR gas/26263 linker tests new b243ba58e8 [gdb/testsuite] Stabilize execution order in omp-par-scope.c new 2f5541f384 PR26265, Spurious 'gc-sections requires ... when --init or --fini
The 5 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 | 17 +++ bfd/elf64-ppc.c | 101 +++++++++++++-- bfd/elflink.c | 3 +- bfd/version.h | 2 +- gas/ChangeLog | 48 +++++++ gas/app.c | 23 +--- gas/config/tc-i386-intel.c | 10 ++ gas/config/tc-i386.c | 144 +++++++++++++++------ gas/testsuite/gas/i386/i386.exp | 36 ++++-- gas/testsuite/gas/i386/relax-5.d | 2 +- gas/testsuite/gas/i386/sizing.s | 55 ++++++++ gas/testsuite/gas/i386/sizing32.d | 20 +++ gas/testsuite/gas/i386/sizing64.d | 20 +++ gas/testsuite/gas/i386/svr4.d | 24 ++++ gas/testsuite/gas/i386/svr4.s | 31 +++++ gas/testsuite/gas/i386/x86-64-relax-4.d | 2 +- gdb/ChangeLog | 5 + gdb/linux-nat.c | 7 +- gdb/testsuite/ChangeLog | 16 +++ gdb/testsuite/gdb.base/valgrind-infcall-2.exp | 2 +- gdb/testsuite/gdb.threads/attach-slow-waitpid.exp | 7 +- gdb/testsuite/gdb.threads/omp-par-scope.c | 47 +++++++ gold/ChangeLog | 8 ++ gold/testsuite/bnd_ifunc_1.sh | 6 +- gold/testsuite/bnd_plt_1.sh | 10 +- gold/testsuite/split_x32.sh | 8 +- gold/testsuite/split_x86_64.sh | 8 +- gold/testsuite/x86_64_indirect_call_to_direct.sh | 4 +- ld/ChangeLog | 46 +++++++ ld/emulparams/elf64mmix.sh | 4 + ld/emultempl/ppc64elf.em | 19 ++- ld/ld.texi | 12 +- ld/ldlang.c | 26 +++- ld/scripttempl/elf.sc | 13 +- ld/testsuite/ld-gc/noent.d | 2 +- ld/testsuite/ld-i386/i386.exp | 1 + ld/testsuite/ld-i386/pr26263.d | 19 +++ ld/testsuite/ld-mmix/sec-1.d | 2 +- ld/testsuite/ld-powerpc/callstub-1.d | 12 +- ld/testsuite/ld-powerpc/callstub-2.d | 8 +- .../ld-powerpc/{callstub-1.d => callstub-4.d} | 17 ++- ld/testsuite/ld-powerpc/notoc.d | 2 +- ld/testsuite/ld-powerpc/notoc3.d | 97 ++++++++++++++ ld/testsuite/ld-powerpc/notoc3.s | 59 +++++++++ ld/testsuite/ld-powerpc/notoc3.wf | 17 +++ ld/testsuite/ld-powerpc/powerpc.exp | 7 +- ld/testsuite/ld-x86-64/pr26263.d | 18 +++ ld/testsuite/ld-x86-64/pr26263.s | 8 ++ ld/testsuite/ld-x86-64/x86-64.exp | 1 + 49 files changed, 902 insertions(+), 154 deletions(-) create mode 100644 gas/testsuite/gas/i386/sizing.s create mode 100644 gas/testsuite/gas/i386/sizing32.d create mode 100644 gas/testsuite/gas/i386/sizing64.d create mode 100644 gas/testsuite/gas/i386/svr4.d create mode 100644 gas/testsuite/gas/i386/svr4.s create mode 100644 ld/testsuite/ld-i386/pr26263.d copy ld/testsuite/ld-powerpc/{callstub-1.d => callstub-4.d} (63%) create mode 100644 ld/testsuite/ld-powerpc/notoc3.d create mode 100644 ld/testsuite/ld-powerpc/notoc3.s create mode 100644 ld/testsuite/ld-powerpc/notoc3.wf create mode 100644 ld/testsuite/ld-x86-64/pr26263.d create mode 100644 ld/testsuite/ld-x86-64/pr26263.s