This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_cross/gnu-master-aarch64-build_cross in repository toolchain/ci/binutils-gdb.
from c7cd291722 aarch64: Return an error on conditional branch to an undefin [...] adds 580decb024 Automatic date update in version.in adds a56f73917a gdb/testsuite: remove stale comment in gdb.base/bp-cmds-exec [...] adds 7a4e8e7d55 gdb/breakpoint: fix typo in help message of "set breakpoint [...] adds ce139cd560 Fix the debuglink following code to recursively load links f [...] adds 8d58ed37f1 x86: Add NT_X86_CET note adds 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 adds 496afd1705 elf: Add -z unique-symbol to avoid duplicated local symbol names
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 11 ++ bfd/elflink.c | 207 +++++++++++++++++---- bfd/version.h | 2 +- binutils/ChangeLog | 15 ++ binutils/dwarf.c | 76 +++++--- binutils/readelf.c | 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 | 31 +++ gdb/breakpoint.c | 2 +- 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 | 16 ++ gdb/testsuite/gdb.arch/x86-avx512bf16.c | 164 ++++++++++++++++ gdb/testsuite/gdb.arch/x86-avx512bf16.exp | 74 ++++++++ .../gdb.base/bp-cmds-execution-x-script.exp | 5 - gdb/testsuite/gdb.cp/ambiguous.exp | 7 + gdb/testsuite/lib/gdb.exp | 51 +++++ gdbsupport/tdesc.cc | 3 +- gdbsupport/tdesc.h | 1 + include/ChangeLog | 53 ++++++ include/bfdlink.h | 3 + include/elf/common.h | 2 + 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 +- 61 files changed, 1422 insertions(+), 138 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