This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from adb8754e48d pr25022.d: Xfail more targets without ldelf_before_place_orphans new 9fc0b501af7 Add support for the GBZ80 and Z80N variants of the Z80 arch [...]
The 1 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/archures.c | 17 +- bfd/bfd-in2.h | 20 +- bfd/coff-z80.c | 26 + bfd/coffcode.h | 2 + bfd/cpu-z80.c | 3 +- bfd/elf32-z80.c | 350 +++++++-- bfd/libbfd.h | 1 + bfd/reloc.c | 4 + binutils/ChangeLog | 6 + binutils/readelf.c | 1 + gas/ChangeLog | 15 + gas/config/tc-z80.c | 610 ++++++++++++--- gas/config/tc-z80.h | 21 +- gas/doc/c-z80.texi | 22 +- gas/testsuite/gas/z80/gbz80_all.d | 514 +++++++++++++ gas/testsuite/gas/z80/gbz80_all.s | 519 +++++++++++++ gas/testsuite/gas/z80/z80.exp | 6 + gas/testsuite/gas/z80/z80n_all.d | 1208 +++++++++++++++++++++++++++++ gas/testsuite/gas/z80/z80n_all.s | 1242 ++++++++++++++++++++++++++++++ gas/testsuite/gas/z80/z80n_reloc.d | 10 + include/ChangeLog | 7 + include/coff/internal.h | 1 + include/elf/z80.h | 2 + ld/ChangeLog | 19 + ld/emulparams/elf32z80.sh | 2 +- ld/emultempl/z80.em | 215 +++--- ld/emultempl/z80elf.em | 133 ---- ld/testsuite/ld-elf/pr22450.d | 1 + ld/testsuite/ld-elf/sec64k.exp | 8 + ld/testsuite/ld-unique/pr21529.s | 8 +- ld/testsuite/ld-unique/unique.d | 2 +- ld/testsuite/ld-unique/unique.s | 6 +- ld/testsuite/ld-unique/unique_empty.s | 2 +- ld/testsuite/ld-unique/unique_shared.s | 6 +- ld/testsuite/ld-z80/arch_z80n.d | 11 + ld/testsuite/ld-z80/comb_arch_z80_z80n.d | 11 + ld/testsuite/ld-z80/labels.s | 6 + ld/testsuite/ld-z80/relocs.s | 11 + ld/testsuite/ld-z80/relocs_f_z80n.d | 86 +++ opcodes/ChangeLog | 5 + opcodes/z80-dis.c | 173 ++++- 42 files changed, 4860 insertions(+), 464 deletions(-) create mode 100644 gas/testsuite/gas/z80/gbz80_all.d create mode 100644 gas/testsuite/gas/z80/gbz80_all.s create mode 100644 gas/testsuite/gas/z80/z80n_all.d create mode 100644 gas/testsuite/gas/z80/z80n_all.s create mode 100644 gas/testsuite/gas/z80/z80n_reloc.d delete mode 100644 ld/emultempl/z80elf.em create mode 100644 ld/testsuite/ld-z80/arch_z80n.d create mode 100644 ld/testsuite/ld-z80/comb_arch_z80_z80n.d create mode 100644 ld/testsuite/ld-z80/relocs_f_z80n.d