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-allyesconfig in repository toolchain/binutils-gdb.
from 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
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 19 + bfd/elf32-s12z.c | 23 ++ bfd/elflink.c | 20 +- bfd/merge.c | 18 +- bfd/version.h | 2 +- binutils/readelf.c | 3 +- gas/ChangeLog | 19 + gas/config/tc-alpha.c | 6 + gas/config/tc-s12z.c | 3 + gas/config/tc-s390.c | 15 + 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 | 14 + 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 + include/elf/s12z.h | 3 +- ld/ChangeLog | 5 + ld/testsuite/ld-elf/pr18720b.c | 4 + ld/testsuite/ld-elf/shared.exp | 19 +- opcodes/ChangeLog | 5 + opcodes/s12z-dis.c | 4 + opcodes/s390-opc.txt | 7 + 47 files changed, 1485 insertions(+), 273 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