This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk/gnu-master-arm-spec2k6-Os_LTO in repository toolchain/ci/binutils-gdb.
from 65d20a7403 Automatic date update in version.in adds baf46cd780 ARM CMSE symbols adds a051e2f3e0 [AArch64][gas] Update MTE system register encodings adds b20d385926 Implement a float16 directive for assembling 16 bit IEEE 754 [...] adds 652afeef24 AArch64: Fix LD crash on weak and undefined TLS symbols. (PR [...] adds 43771869e5 gdb/fortran: Remove some dead code from the parser adds a3197745b1 Fix the assembler's floating point number parser so that it [...] adds 4ac948a044 Prevent a floating point exception in the dwarf parser when [...] adds 93d6a337d5 oops - omitted changelog entry from previous delta. adds 03da31c676 Fix an illegal memory access when dumping corrupt x86_64 PE [...] adds 0535e5d74d Arm: Add support for missing CPUs adds 395fad095c [gdb/testsuite] Make gdb_test message more informative in mu [...] adds 272044897e Make GDB compile with Python 3 on MinGW adds 1aa7f807d2 Automatic date update in version.in adds afc72f154d Prevent a potential illegal memory access in the DWARF parse [...] adds fe4b77d9e5 Updated Swedish translation for the gas sub-directory. adds 2600d80ccd PR24933, Memory leak in elf_x86_64_get_synthetic_symtab adds a7ba389645 Stop the BFD library from failing when encountering a second [...] adds 09f7b0de53 or1k: Fix incorrect value in PLT GOT entries, causing infinite loop adds de8af80891 Fix bug in nios2 prologue analysis. adds 2d41fa1165 Move gdb-dlfcn.[ch] to gdbsupport/ adds 8a9455cc82 Automatic date update in version.in adds 6d5554a605 PowerPC64 segfault in ppc64_elf_edit_toc
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 51 +++++++++++++ bfd/cpu-arm.c | 3 + bfd/elf.c | 13 +++- bfd/elf32-arm.c | 26 ++----- bfd/elf32-or1k.c | 7 +- bfd/elf64-ppc.c | 5 ++ bfd/elfnn-aarch64.c | 83 ++++++++++++++++------ bfd/elfxx-aarch64.c | 15 +++- bfd/elfxx-aarch64.h | 4 +- bfd/elfxx-x86.c | 7 +- bfd/pei-x86_64.c | 71 +++++++++++++++--- bfd/version.h | 2 +- binutils/ChangeLog | 14 ++++ binutils/dwarf.c | 81 ++++++++++++--------- gas/ChangeLog | 38 ++++++++++ gas/NEWS | 13 ++-- gas/atof-generic.c | 39 ++++++++-- gas/config/tc-aarch64.c | 3 +- gas/config/tc-arm.c | 9 +++ gas/doc/c-aarch64.texi | 8 +++ gas/doc/c-arm.texi | 3 + gas/po/sv.po | 71 ++++++------------ gas/testsuite/gas/aarch64/float16-be.d | 11 +++ gas/testsuite/gas/aarch64/float16-le.d | 11 +++ gas/testsuite/gas/aarch64/float16.s | 19 +++++ gas/testsuite/gas/aarch64/sysreg-4.d | 20 +++--- gas/testsuite/gas/all/float.s | 2 + .../gas/{aarch64 => arm}/cpu-cortex-a76ae.d | 0 .../gas/{aarch64 => arm}/cpu-cortex-a77.d | 0 gas/testsuite/gas/arm/cpu-cortex-m35p.d | 6 ++ gas/testsuite/gas/i386/fp.d | 1 + gas/testsuite/gas/i386/fp.s | 4 ++ gdb/ChangeLog | 31 ++++++++ gdb/Makefile.in | 4 +- gdb/compile/compile-c-support.c | 2 +- gdb/configure | 5 +- gdb/configure.ac | 3 +- gdb/f-exp.y | 14 +--- gdb/gdbserver/ChangeLog | 7 ++ gdb/gdbserver/Makefile.in | 2 + gdb/gdbserver/config.in | 3 + gdb/gdbserver/configure | 2 +- gdb/gdbsupport/common.m4 | 3 +- gdb/{ => gdbsupport}/gdb-dlfcn.c | 2 +- gdb/{ => gdbsupport}/gdb-dlfcn.h | 0 gdb/jit.c | 2 +- gdb/nios2-tdep.c | 8 ++- gdb/python/lib/gdb/__init__.py | 26 +++++++ gdb/python/python.c | 23 +++--- gdb/testsuite/ChangeLog | 5 ++ gdb/testsuite/gdb.multi/multi-term-settings.exp | 4 +- include/ChangeLog | 4 ++ include/elf/arm.h | 7 -- ld/ChangeLog | 9 +++ ld/testsuite/ld-aarch64/aarch64-elf.exp | 2 + ld/testsuite/ld-aarch64/undef-tls.d | 17 +++++ ld/testsuite/ld-aarch64/undef-tls.s | 13 ++++ ld/testsuite/ld-aarch64/weak-tls.d | 8 +++ ld/testsuite/ld-aarch64/weak-tls.s | 16 +++++ opcodes/ChangeLog | 6 ++ opcodes/aarch64-opc.c | 20 +++--- 61 files changed, 668 insertions(+), 220 deletions(-) create mode 100644 gas/testsuite/gas/aarch64/float16-be.d create mode 100644 gas/testsuite/gas/aarch64/float16-le.d create mode 100644 gas/testsuite/gas/aarch64/float16.s copy gas/testsuite/gas/{aarch64 => arm}/cpu-cortex-a76ae.d (100%) copy gas/testsuite/gas/{aarch64 => arm}/cpu-cortex-a77.d (100%) create mode 100644 gas/testsuite/gas/arm/cpu-cortex-m35p.d rename gdb/{ => gdbsupport}/gdb-dlfcn.c (99%) rename gdb/{ => gdbsupport}/gdb-dlfcn.h (100%) create mode 100644 ld/testsuite/ld-aarch64/undef-tls.d create mode 100644 ld/testsuite/ld-aarch64/undef-tls.s create mode 100644 ld/testsuite/ld-aarch64/weak-tls.d create mode 100644 ld/testsuite/ld-aarch64/weak-tls.s