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-mainline-allnoconfig in repository toolchain/ci/binutils-gdb.
from f65825ec7a Fix gdb.dwarf2/dw2-double-set-die-type.exp with Clang adds 990e5268d2 aarch64: Add support for Neoverse N2 CPU adds c81946efc2 NEWS: Mention recent Arm CPU support adds 04e433a857 ld: Override the IR definition for non-ELF targets adds 77718e5b7d [GAS][AArch64] Add support for Cortex-A78 and Cortex-A78AE adds cae21f8ebf Fix regression in variant part handling adds 95eb9e54a5 [gdb] Fix regression in dwarf2_name adds 27f134698a x86: Check register operand for AddrPrefixOpReg adds 1f22ee1f72 Automatic date update in version.in adds 642f545a93 Add new directive to GAS: .attach_to_group. adds 1eb6eb795f Include the x86-bsd-nat.h header and fix the NetBSD/i386 build adds e2a2a24a8e Preinitialize the sockaddr_un variable to zero adds 15397b0e05 Refactor the NetBSD amd64 gdbserver support adds 8b667faedf Add NetBSD/i386 gdbserver support adds 6ff330351e Remove the old sanity check of sigcontext offsets for NetBSD/i386 adds 064280be25 Fix the i386 build adds 71a74ee72d Automatic date update in version.in adds 048fde1ef4 DWARFv5: Handle DW_MACRO_define_strx and DW_MACRO_undef_strx [...] new 7026832e52 Allow note sections to be discarded when they are linked to [...] new 7bd766ccd8 Fix the mve-vcvtne-it assembler test for the arm-*-pe targets.
The 2 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 | 6 + bfd/elflink.c | 3 +- bfd/version.h | 2 +- gas/ChangeLog | 48 ++++++++ gas/NEWS | 7 ++ gas/config/obj-elf.c | 24 ++++ gas/config/tc-aarch64.c | 24 ++++ gas/config/tc-i386.c | 13 +++ gas/doc/as.texi | 12 +- gas/doc/c-aarch64.texi | 3 + gas/testsuite/gas/arm/mve-vcvtne-it.d | 3 +- gas/testsuite/gas/elf/attach-1.d | 11 ++ gas/testsuite/gas/elf/attach-1.s | 11 ++ gas/testsuite/gas/elf/attach-2.d | 11 ++ gas/testsuite/gas/elf/attach-2.s | 9 ++ gas/testsuite/gas/elf/attach-err.d | 3 + gas/testsuite/gas/elf/attach-err.err | 4 + gas/testsuite/gas/elf/attach-err.s | 5 + gas/testsuite/gas/elf/elf.exp | 4 + gas/testsuite/gas/i386/x86-64-enqcmd-intel.d | 28 +++-- gas/testsuite/gas/i386/x86-64-enqcmd.d | 28 +++-- gas/testsuite/gas/i386/x86-64-enqcmd.s | 12 ++ gas/testsuite/gas/i386/x86-64-movdir-intel.d | 24 ++-- gas/testsuite/gas/i386/x86-64-movdir.d | 24 ++-- gas/testsuite/gas/i386/x86-64-movdir.s | 6 + gdb/ChangeLog | 32 ++++++ gdb/dwarf2/macro.c | 71 +++++++++++- gdb/dwarf2/macro.h | 3 + gdb/dwarf2/read.c | 27 ++++- gdb/i386-bsd-nat.c | 6 +- gdb/i386-bsd-nat.h | 2 + gdb/i386-nbsd-tdep.c | 2 +- gdb/i386-tdep.h | 1 - gdbserver/ChangeLog | 23 ++++ gdbserver/Makefile.in | 1 + gdbserver/configure.srv | 6 + gdbserver/netbsd-amd64-low.cc | 53 ++++++--- gdbserver/netbsd-i386-low.cc | 157 +++++++++++++++++++++++++++ gdbserver/netbsd-low.cc | 13 +-- gdbserver/netbsd-low.h | 30 ++--- gdbsupport/ChangeLog | 5 +- gdbsupport/agent.cc | 2 +- ld/ChangeLog | 13 +++ ld/plugin.c | 6 +- ld/testsuite/ld-elf/pr26681.d | 3 + ld/testsuite/ld-elf/pr26681.l | 5 + ld/testsuite/ld-elf/pr26681.s | 10 ++ 47 files changed, 695 insertions(+), 101 deletions(-) create mode 100644 gas/testsuite/gas/elf/attach-1.d create mode 100644 gas/testsuite/gas/elf/attach-1.s create mode 100644 gas/testsuite/gas/elf/attach-2.d create mode 100644 gas/testsuite/gas/elf/attach-2.s create mode 100644 gas/testsuite/gas/elf/attach-err.d create mode 100644 gas/testsuite/gas/elf/attach-err.err create mode 100644 gas/testsuite/gas/elf/attach-err.s create mode 100644 gdbserver/netbsd-i386-low.cc create mode 100644 ld/testsuite/ld-elf/pr26681.d create mode 100644 ld/testsuite/ld-elf/pr26681.l create mode 100644 ld/testsuite/ld-elf/pr26681.s