aboutsummaryrefslogtreecommitdiff
path: root/bfd/cpu-plugin.c
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2020-01-27 14:09:00 +0100
committerAndreas Schwab <schwab@suse.de>2020-01-27 14:31:29 +0100
commit086b06f3c9daa4eee3c1ddd547af32553d1187d6 (patch)
tree7e5a274e50dc0f3f5120722ec38d640b1bc9559b /bfd/cpu-plugin.c
parentbc31405ebb2c4297ae815ab59f59165014347528 (diff)
downloadgdb-086b06f3c9daa4eee3c1ddd547af32553d1187d6.zip
gdb-086b06f3c9daa4eee3c1ddd547af32553d1187d6.tar.gz
gdb-086b06f3c9daa4eee3c1ddd547af32553d1187d6.tar.bz2
Remove cpu-plugin.c
After commit 999d6dff80f cpu-plugin.c is no longer begin used. * Makefile.am (ALL_MACHINES): Remove cpu-plugin.lo. (ALL_MACHINES_CFILES): Remove cpu-plugin.c. * Makefile.in: Regenerate. * cpu-plugin.c: Remove. * archures.c (enum bfd_architecture): Remove bfd_arch_plugin. (bfd_plugin_arch): Remove declaration. * bfd-in2.h: Regenerate. * po/SRC-POTFILES.in: Regenerate.
Diffstat (limited to 'bfd/cpu-plugin.c')
-rw-r--r--bfd/cpu-plugin.c41
1 files changed, 0 insertions, 41 deletions
diff --git a/bfd/cpu-plugin.c b/bfd/cpu-plugin.c
deleted file mode 100644
index 23991c2..0000000
--- a/bfd/cpu-plugin.c
+++ /dev/null
@@ -1,41 +0,0 @@
-/* BFD support for plugins.
- Copyright (C) 2009-2020 Free Software Foundation, Inc.
-
- 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"
-
-const bfd_arch_info_type bfd_plugin_arch =
-{
- 32, /* Bits in a word. */
- 32, /* Bits in an address. */
- 8, /* Bits in a byte. */
- bfd_arch_plugin,
- 0, /* Only 1 machine. */
- "plugin",
- "plugin",
- 3,
- TRUE,
- bfd_default_compatible,
- bfd_default_scan,
- bfd_arch_default_fill,
- NULL,
- 0 /* Maximum offset of a reloc from the start of an insn. */
-};