diff options
author | Alan Modra <amodra@gmail.com> | 2018-04-16 15:19:41 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2018-04-16 15:19:52 +0930 |
commit | e82aa7944d2b00c54e9d3c1a47c5ed4a0e39393a (patch) | |
tree | 5d6f360d2a348726d6723f46407592d869f005f9 /bfd/cpu-h8500.c | |
parent | fe0bf0fd57ea3ef8458d2e8661b428110fc026e2 (diff) | |
download | gdb-e82aa7944d2b00c54e9d3c1a47c5ed4a0e39393a.zip gdb-e82aa7944d2b00c54e9d3c1a47c5ed4a0e39393a.tar.gz gdb-e82aa7944d2b00c54e9d3c1a47c5ed4a0e39393a.tar.bz2 |
Remove h8500 support
include/
* coff/h8500.h: Delete.
* coff/internal.h: Remove h8500 support.
bfd/
* Makefile.am: Remove h8500 support.
* archures.c: Likewise.
* coffcode.h: Likewise.
* config.bfd: Likewise.
* configure.ac: Likewise.
* targets.c: Likewise.
* coff-h8500.c: Delete.
* cpu-h8500.c: Delete.
* Makefile.in: Regenerate.
* bfd-in2.h: Regenerate.
* configure: Regenerate.
* po/SRC-POTFILES.in: Regenerate.
opcodes/
* Makefile.am: Remove h8500 support.
* configure.ac: Likewise.
* disassemble.c: Likewise.
* disassemble.h: Likewise.
* h8500-dis.c: Delete.
* h8500-opc.h: Delete.
* Makefile.in: Regenerate.
* configure: Regenerate.
* po/POTFILES.in: Regenerate.
binutils/
* testsuite/binutils-all/objcopy.exp: Remove h8500 support.
* testsuite/lib/binutils-common.exp: Likewise.
gas/
* config/obj-coff.h: Remove h8500 support.
ld/
* Makefile.am: Remove h8500 support.
* configure.tgt: Likewise.
* emulparams/h8500.sh: Delete.
* emulparams/h8500b.sh: Delete.
* emulparams/h8500c.sh: Delete.
* emulparams/h8500m.sh: Delete.
* emulparams/h8500s.sh: Delete.
* scripttempl/h8500.sc: Delete.
* scripttempl/h8500b.sc: Delete.
* scripttempl/h8500c.sc: Delete.
* scripttempl/h8500m.sc: Delete.
* scripttempl/h8500s.sc: Delete.
* Makefile.in: Regenerate.
* po/BLD-POTFILES.in: Regenerate.
Diffstat (limited to 'bfd/cpu-h8500.c')
-rw-r--r-- | bfd/cpu-h8500.c | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/bfd/cpu-h8500.c b/bfd/cpu-h8500.c deleted file mode 100644 index 06dc9b9..0000000 --- a/bfd/cpu-h8500.c +++ /dev/null @@ -1,59 +0,0 @@ -/* BFD library support routines for the H8/500 architecture. - Copyright (C) 1993-2018 Free Software Foundation, Inc. - Hacked by Steve Chamberlain of Cygnus Support. - - This file is part of BFD, the Binary File Descriptor library. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, - MA 02110-1301, USA. */ - -#include "sysdep.h" -#include "bfd.h" -#include "libbfd.h" - -static bfd_boolean scan_mach - (const struct bfd_arch_info *, const char *); - -static bfd_boolean -scan_mach (const struct bfd_arch_info *info ATTRIBUTE_UNUSED, - const char *string) -{ - if (strcmp (string,"h8/500") == 0) - return TRUE; - if (strcmp (string,"H8/500") == 0) - return TRUE; - if (strcmp (string,"h8500") == 0) - return TRUE; - if (strcmp (string,"H8500") == 0) - return TRUE; - return FALSE; -} - -const bfd_arch_info_type bfd_h8500_arch = -{ - 16, /* 16 bits in a word */ - 24, /* 24 bits in an address */ - 8, /* 8 bits in a byte */ - bfd_arch_h8500, - 0, /* only 1 machine */ - "h8500", /* arch_name */ - "h8500", /* printable name */ - 1, - TRUE, /* the default machine */ - bfd_default_compatible, - scan_mach, - bfd_arch_default_fill, - 0, -}; |