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-allyesconfig in repository toolchain/binutils-gdb.
from f6efe3f842 Introduce gdbarch_num_cooked_regs adds 38cf168be5 PR23040, .uleb128 directive doesn't accept some valid expressions adds e1748c54a2 Apply alpha BFD_RELOC_8 fixups adds 1f38083f42 gas simple-forward test adds 192c2bfbd7 S12Z: Disassembly: Fallback to show the address if the symbo [...] adds 270b9329b7 RISC-V: Print FP regs as union of float types. adds 3399f1b303 RISC-V: NaN-box FP values smaller than an FP register. adds ba37fe2e8b Automatic date update in version.in adds 0dbfcfffe9 gdb/riscv: Fix register access for register aliases adds 5a77b1b49f gdb/riscv: expect h/w watchpoints to trigger before the memo [...] adds 8e3152af14 alpha testsuite fixes adds ab419ddbb2 PR23804, buffer overflow in sec_merge_hash_lookup adds 102def4da8 PR23805, NULL pointer dereference in elf_link_input_bfd adds 45a0eaf770 PR23806, NULL pointer dereference in merge_strings adds 420ecd9ce8 gdb/riscv: Give user-friendly names for CSRs adds 405b61965f S12Z: Handle 16 bit fixups which are constant. adds 2849d19feb S12Z: New 32 bit Reloc. adds f19c7ff839 GDBSERVER: Listen on a unix domain (instead of TCP) socket i [...] adds 6d0f8100c1 GDB: Document the unix::/path/to/socket of remote connection. adds 0a163825df GDB: Fix documentation for invoking GDBSERVER adds 88f5cc8cf8 GDB: Remote target can now accept the form unix::/path/to/socket. adds 51d21d60b3 GDB: New target s12z adds f47998d69f S/390: Support vector alignment hints adds 79b8d3b090 Fix use-after-free in record_btrace_start_replaying adds 35ed81d4f4 Avoid GDB SIGTTOU on catch exec + set follow-exec-mode new ( [...] adds bea556ab08 Fix failing cooked_read selftest for CSKY. adds 20784627bf Automatic date update in version.in adds 4df46df7a4 [gdb/testsuite] Handle removed valgrind option --db-attach adds a76dc3b770 [gdb/testsuite] Rewrite catch-follow-exec.exp using gdb_test adds 8c246a60c0 cmse_scan segfault adds fe1a5cad30 [gdb/testsuite] Log wait status on process no longer exists error adds 0e139b8787 Automatic date update in version.in adds 0a640d7196 ELF: Hide symbols defined in discarded input sections
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 30 ++ bfd/elf32-arm.c | 3 +- bfd/elf32-s12z.c | 23 + bfd/elflink.c | 32 +- bfd/merge.c | 18 +- bfd/version.h | 2 +- binutils/readelf.c | 3 +- gas/ChangeLog | 33 ++ gas/config/tc-alpha.c | 6 + gas/config/tc-s12z.c | 3 + gas/config/tc-s390.c | 15 + gas/dwarf2dbg.c | 19 +- gas/read.c | 2 +- gas/symbols.c | 33 +- gas/testsuite/gas/all/eqv-dot.d | 4 +- gas/testsuite/gas/all/forward.d | 2 + gas/testsuite/gas/all/gas.exp | 6 +- gas/testsuite/gas/all/simple-forward.d | 14 + gas/testsuite/gas/all/simple-forward.s | 11 + gas/testsuite/gas/s390/zarch-arch12.d | 8 + gas/testsuite/gas/s390/zarch-arch12.s | 8 + gdb/ChangeLog | 53 ++ gdb/Makefile.in | 1 + gdb/NEWS | 8 + gdb/common/netstuff.c | 8 + gdb/configure.tgt | 5 + gdb/doc/gdb.texinfo | 100 +++- gdb/gdbserver/configure.ac | 2 +- gdb/gdbserver/remote-utils.c | 159 ++++-- gdb/inflow.c | 16 + gdb/infrun.c | 10 +- gdb/record-btrace.c | 19 +- gdb/regcache.c | 2 +- gdb/riscv-tdep.c | 340 ++++++++----- gdb/riscv-tdep.h | 4 + gdb/s12z-tdep.c | 544 +++++++++++++++++++++ gdb/ser-uds.c | 18 +- gdb/serial.c | 5 +- gdb/terminal.h | 3 + gdb/testsuite/ChangeLog | 19 + gdb/testsuite/gdb.arch/riscv-reg-aliases.c | 22 + gdb/testsuite/gdb.arch/riscv-reg-aliases.exp | 130 +++++ gdb/testsuite/gdb.base/catch-follow-exec.exp | 63 +-- gdb/testsuite/gdb.base/valgrind-db-attach.exp | 4 + gdb/testsuite/lib/gdb.exp | 11 + include/elf/s12z.h | 3 +- ld/ChangeLog | 14 + ld/testsuite/ld-elf/pr18720b.c | 4 + ld/testsuite/ld-elf/shared.exp | 19 +- ld/testsuite/ld-plugin/lto.exp | 6 + ld/testsuite/ld-plugin/pr23818.d | 4 + ld/testsuite/ld-plugin/pr23818.t | 4 + .../{ld-elfvers/vers26a.c => ld-plugin/pr23818a.c} | 0 ld/testsuite/ld-plugin/pr23818b.c | 7 + opcodes/ChangeLog | 5 + opcodes/s12z-dis.c | 4 + opcodes/s390-opc.txt | 7 + 57 files changed, 1602 insertions(+), 296 deletions(-) create mode 100644 gas/testsuite/gas/all/simple-forward.d create mode 100644 gas/testsuite/gas/all/simple-forward.s create mode 100644 gdb/s12z-tdep.c create mode 100644 gdb/testsuite/gdb.arch/riscv-reg-aliases.c create mode 100644 gdb/testsuite/gdb.arch/riscv-reg-aliases.exp create mode 100644 ld/testsuite/ld-plugin/pr23818.d create mode 100644 ld/testsuite/ld-plugin/pr23818.t copy ld/testsuite/{ld-elfvers/vers26a.c => ld-plugin/pr23818a.c} (100%) create mode 100644 ld/testsuite/ld-plugin/pr23818b.c