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-next-allmodconfig in repository toolchain/ci/binutils-gdb.
from 2f89101fe8 [gdb/testsuite] Add cache_verify option for gdb_caching_procs adds cb9b645d3e gdb: recognize 64 bits Windows executables as Cygwin osabi adds fe4b2ee65c gdb: move enum gdb_osabi to osabi.h adds 053205cc40 gdb: add Windows OS ABI adds 7a1998dffb gdb: rename i386-cygwin-tdep.c to i386-windows-tdep.c adds 5982a56ab9 gdb: rename content of i386-windows-tdep.c, cygwin to windows adds 8db5243724 gdb: select "Cygwin" OS ABI for Cygwin binaries adds 30efb6c7af gdb: define builtin long type to be 64 bits on amd64 Cygwin adds 67430cd00a Fix dwarf2_name caching bug adds 817a758576 arc: Migrate to new target features adds 771dd3a88b Initialize base_value in pascal_object_print_value adds 7325b16ba4 [gdb/testsuite] Give up after consecutive timeouts in comple [...] adds 589902954d [gdb] Skip imports of c++ CUs adds a2ecbe9fb7 Rewrite nbsd_nat_target::pid_to_exec_file to sysctl(3) adds 9e38d61910 Include missing header to get missing declarations adds 946ffddcae Automatic date update in version.in adds 9809762324 Inherit sh_nbsd_nat_target from nbsd_nat_target adds a225c9a869 Add support for NetBSD threads in sh-nbsd-nat.c new ecbbbdba71 Remove a double free in the BFD library triggered when parsi [...] new 68e52bc7ec Fix a small set of Z80 problems. new 327ef784ba Replace a couple of assertions in the BFD library that can b [...] new d3c3c54293 Fix PR number in previous delta
The 4 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 | 12 +++ bfd/elf.c | 32 ++++-- bfd/version.h | 2 +- gas/ChangeLog | 25 +++++ gas/config/tc-z80.c | 131 +++++++++++++---------- gas/config/tc-z80.h | 3 + gas/testsuite/gas/z80/colonless.d | 12 ++- gas/testsuite/gas/z80/colonless.s | 4 + gas/testsuite/gas/z80/ez80_adl_all.d | 8 +- gas/testsuite/gas/z80/ez80_unsup_regs.d | 34 ++++++ gas/testsuite/gas/z80/ez80_z80_all.d | 8 +- gas/testsuite/gas/z80/gbz80_unsup_regs.d | 45 ++++++++ gas/testsuite/gas/z80/r800_unsup_regs.d | 35 ++++++ gas/testsuite/gas/z80/unsup_regs.s | 71 +++++++++++++ gas/testsuite/gas/z80/z180_unsup_regs.d | 39 +++++++ gas/testsuite/gas/z80/z80.exp | 87 +-------------- gas/testsuite/gas/z80/z80_strict_unsup_regs.d | 39 +++++++ gas/testsuite/gas/z80/z80_unsup_regs.d | 34 ++++++ gas/testsuite/gas/z80/z80n_unsup_regs.d | 34 ++++++ gdb/ChangeLog | 136 ++++++++++++++++++++++++ gdb/Makefile.in | 6 +- gdb/amd64-bsd-nat.c | 1 + gdb/amd64-windows-tdep.c | 41 ++++++- gdb/arc-tdep.c | 59 ++++++---- gdb/arc-tdep.h | 4 + gdb/arch/arc.c | 58 ++++++++++ gdb/arch/arc.h | 48 +++++++++ gdb/configure.tgt | 12 +-- gdb/defs.h | 31 ------ gdb/dwarf2/read.c | 40 +++++-- gdb/dwarf2/read.h | 6 ++ gdb/features/Makefile | 6 +- gdb/features/arc-arcompact.c | 74 ------------- gdb/features/arc-arcompact.xml | 85 --------------- gdb/features/arc-v2.c | 78 -------------- gdb/features/arc-v2.xml | 92 ---------------- gdb/features/arc/aux-arcompact.c | 31 ++++++ gdb/features/arc/aux-arcompact.xml | 28 +++++ gdb/features/arc/aux-v2.c | 35 ++++++ gdb/features/arc/aux-v2.xml | 32 ++++++ gdb/features/arc/core-arcompact.c | 47 ++++++++ gdb/features/arc/core-arcompact.xml | 58 ++++++++++ gdb/features/arc/core-v2.c | 47 ++++++++ gdb/features/arc/core-v2.xml | 61 +++++++++++ gdb/gdbarch.h | 1 + gdb/gdbarch.sh | 1 + gdb/{i386-cygwin-tdep.c => i386-windows-tdep.c} | 45 +++++--- gdb/nbsd-nat.c | 22 ++-- gdb/osabi.c | 1 + gdb/osabi.h | 32 ++++++ gdb/p-valprint.c | 1 + gdb/sh-nbsd-nat.c | 11 +- gdb/target-descriptions.c | 3 +- gdb/testsuite/lib/completion-support.exp | 27 ++++- gdb/windows-tdep.c | 99 +++++++++++++++++ gdb/windows-tdep.h | 6 ++ opcodes/ChangeLog | 5 + opcodes/z80-dis.c | 27 ++--- 58 files changed, 1433 insertions(+), 619 deletions(-) create mode 100644 gas/testsuite/gas/z80/ez80_unsup_regs.d create mode 100644 gas/testsuite/gas/z80/gbz80_unsup_regs.d create mode 100644 gas/testsuite/gas/z80/r800_unsup_regs.d create mode 100644 gas/testsuite/gas/z80/unsup_regs.s create mode 100644 gas/testsuite/gas/z80/z180_unsup_regs.d create mode 100644 gas/testsuite/gas/z80/z80_strict_unsup_regs.d create mode 100644 gas/testsuite/gas/z80/z80_unsup_regs.d create mode 100644 gas/testsuite/gas/z80/z80n_unsup_regs.d create mode 100644 gdb/arch/arc.c create mode 100644 gdb/arch/arc.h delete mode 100644 gdb/features/arc-arcompact.c delete mode 100644 gdb/features/arc-arcompact.xml delete mode 100644 gdb/features/arc-v2.c delete mode 100644 gdb/features/arc-v2.xml create mode 100644 gdb/features/arc/aux-arcompact.c create mode 100644 gdb/features/arc/aux-arcompact.xml create mode 100644 gdb/features/arc/aux-v2.c create mode 100644 gdb/features/arc/aux-v2.xml create mode 100644 gdb/features/arc/core-arcompact.c create mode 100644 gdb/features/arc/core-arcompact.xml create mode 100644 gdb/features/arc/core-v2.c create mode 100644 gdb/features/arc/core-v2.xml rename gdb/{i386-cygwin-tdep.c => i386-windows-tdep.c} (83%)