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-stable-allnoconfig 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.
No new revisions were added by this update.
Summary of changes: 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 | 48 ++++++ include/elf/common.h | 2 + include/floatformat.h | 3 + include/opcode/csky.h | 67 +++++---- ld/ChangeLog | 7 + ld/emultempl/pe.em | 3 +- ld/emultempl/pep.em | 3 +- libiberty/ChangeLog | 8 + libiberty/floatformat.c | 19 ++- 47 files changed, 1016 insertions(+), 97 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