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-aarch64-next-allyesconfig in repository toolchain/ci/binutils-gdb.
from ad570dd76c [gdb/testsuite] Kfail gdb.cp/ambiguous.exp FAILs for PR26602 adds 9cdc5bacdd Fix a segfault when creating an import library with 0 exports. adds 548f527578 CSKY: Change ISA flag's type to bfd_uint64_t and fix build error. adds edc7a80a9c gas: Don't error when .debug_line already exists, unless .lo [...] adds dae7c5a444 Sync include, libiberty with GCC. adds 1347d11109 i386-tdep: Fix naming in zmm and ymm type descriptions. adds 2a67f09db1 Add bfloat16 support for AVX512 register view. adds e71774ed24 Automatic date update in version.in new 496afd1705 elf: Add -z unique-symbol to avoid duplicated local symbol names
The 1 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 | 11 ++ bfd/elflink.c | 207 ++++++++++++++++++++++++------ bfd/version.h | 2 +- gas/ChangeLog | 14 ++ gas/doc/as.texi | 7 +- gas/dwarf2dbg.c | 29 +++-- gas/testsuite/gas/i386/dwarf2-line-1.d | 45 +++++++ gas/testsuite/gas/i386/dwarf2-line-1.s | 28 ++++ gas/testsuite/gas/i386/dwarf2-line-2.d | 48 +++++++ gas/testsuite/gas/i386/dwarf2-line-2.s | 91 +++++++++++++ gas/testsuite/gas/i386/dwarf2-line-3.d | 3 + gas/testsuite/gas/i386/dwarf2-line-3.l | 2 + gas/testsuite/gas/i386/dwarf2-line-3.s | 32 +++++ gas/testsuite/gas/i386/dwarf2-line-4.d | 46 +++++++ gas/testsuite/gas/i386/dwarf2-line-4.s | 29 +++++ gas/testsuite/gas/i386/i386.exp | 5 + gdb/ChangeLog | 26 ++++ gdb/features/i386/64bit-avx512.c | 5 + gdb/features/i386/64bit-avx512.xml | 4 +- gdb/features/i386/64bit-sse.c | 5 + gdb/features/i386/64bit-sse.xml | 2 + gdb/gdbarch.c | 45 +++++++ gdb/gdbarch.h | 8 +- gdb/gdbarch.sh | 4 +- gdb/gdbtypes.c | 7 + gdb/gdbtypes.h | 3 +- gdb/i386-tdep.c | 37 ++++-- gdb/target-descriptions.c | 5 + gdb/testsuite/ChangeLog | 7 + gdb/testsuite/gdb.arch/x86-avx512bf16.c | 164 +++++++++++++++++++++++ gdb/testsuite/gdb.arch/x86-avx512bf16.exp | 74 +++++++++++ gdb/testsuite/lib/gdb.exp | 51 ++++++++ gdbsupport/tdesc.cc | 3 +- gdbsupport/tdesc.h | 1 + include/ChangeLog | 49 +++++++ include/bfdlink.h | 3 + include/floatformat.h | 3 + include/opcode/csky.h | 67 +++++----- ld/ChangeLog | 24 ++++ ld/NEWS | 2 + ld/emultempl/elf.em | 4 + ld/emultempl/pe.em | 3 +- ld/emultempl/pep.em | 3 +- ld/ld.texi | 6 + ld/lexsup.c | 4 + ld/testsuite/ld-elf/elf.exp | 121 +++++++++++++++++ ld/testsuite/ld-elf/pr26391.nd | 7 + ld/testsuite/ld-elf/pr26391.out | 3 + ld/testsuite/ld-elf/pr26391a.c | 18 +++ ld/testsuite/ld-elf/pr26391b.c | 13 ++ ld/testsuite/ld-elf/pr26391c.c | 13 ++ ld/testsuite/ld-elf/pr26391d.c | 13 ++ libiberty/ChangeLog | 8 ++ libiberty/floatformat.c | 19 ++- 54 files changed, 1328 insertions(+), 105 deletions(-) create mode 100644 gas/testsuite/gas/i386/dwarf2-line-1.d create mode 100644 gas/testsuite/gas/i386/dwarf2-line-1.s create mode 100644 gas/testsuite/gas/i386/dwarf2-line-2.d create mode 100644 gas/testsuite/gas/i386/dwarf2-line-2.s create mode 100644 gas/testsuite/gas/i386/dwarf2-line-3.d create mode 100644 gas/testsuite/gas/i386/dwarf2-line-3.l create mode 100644 gas/testsuite/gas/i386/dwarf2-line-3.s create mode 100644 gas/testsuite/gas/i386/dwarf2-line-4.d create mode 100644 gas/testsuite/gas/i386/dwarf2-line-4.s create mode 100644 gdb/testsuite/gdb.arch/x86-avx512bf16.c create mode 100644 gdb/testsuite/gdb.arch/x86-avx512bf16.exp create mode 100644 ld/testsuite/ld-elf/pr26391.nd create mode 100644 ld/testsuite/ld-elf/pr26391.out create mode 100644 ld/testsuite/ld-elf/pr26391a.c create mode 100644 ld/testsuite/ld-elf/pr26391b.c create mode 100644 ld/testsuite/ld-elf/pr26391c.c create mode 100644 ld/testsuite/ld-elf/pr26391d.c