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-defconfig in repository toolchain/binutils-gdb.
from b8265d6194 Automatic date update in version.in adds df80d00c5f Automatic date update in version.in adds 925047fed0 Allocate buffer with proper size in amd64_pseudo_register_{r [...] adds 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.
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 | 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 | 112 ++++++ gdb/Makefile.in | 1 + gdb/NEWS | 8 + gdb/amd64-tdep.c | 31 +- gdb/ax-gdb.c | 3 +- gdb/common/netstuff.c | 8 + gdb/configure.tgt | 5 + gdb/doc/gdb.texinfo | 100 ++++- gdb/dwarf2-frame.c | 3 +- gdb/eval.c | 3 +- gdb/findvar.c | 9 +- gdb/frame.c | 2 +- gdb/gdbarch-selftests.c | 3 +- gdb/gdbarch.h | 8 + gdb/gdbarch.sh | 8 + gdb/gdbserver/configure.ac | 2 +- gdb/gdbserver/remote-utils.c | 159 +++++--- gdb/h8300-tdep.c | 3 +- gdb/i386-tdep.c | 4 +- gdb/infcmd.c | 19 +- gdb/inflow.c | 16 + gdb/infrun.c | 10 +- gdb/m68hc11-tdep.c | 5 +- gdb/mdebugread.c | 8 +- gdb/mi/mi-main.c | 10 +- gdb/mips-tdep.c | 9 +- gdb/nds32-tdep.c | 2 +- gdb/record-btrace.c | 19 +- gdb/regcache.c | 23 +- gdb/riscv-tdep.c | 340 +++++++++++------ gdb/riscv-tdep.h | 4 + gdb/rs6000-tdep.c | 7 +- gdb/s12z-tdep.c | 544 +++++++++++++++++++++++++++ gdb/ser-uds.c | 18 +- gdb/serial.c | 5 +- gdb/stabsread.c | 8 +- gdb/stack.c | 3 +- gdb/target-descriptions.c | 3 +- gdb/terminal.h | 3 + gdb/testsuite/ChangeLog | 5 + gdb/testsuite/gdb.arch/riscv-reg-aliases.c | 22 ++ gdb/testsuite/gdb.arch/riscv-reg-aliases.exp | 130 +++++++ gdb/trad-frame.c | 2 +- gdb/tui/tui-regs.c | 10 +- gdb/user-regs.c | 14 +- gdb/xtensa-tdep.c | 22 +- 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 + 73 files changed, 1654 insertions(+), 375 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