aboutsummaryrefslogtreecommitdiff
path: root/gdb/arch-utils.h
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2003-08-21 20:43:10 +0000
committerAndrew Cagney <cagney@redhat.com>2003-08-21 20:43:10 +0000
commitd90cf509bd4aee2e024979a75685826a5289ba22 (patch)
tree96b6c2c4d4554855df8990aaf098b5703dc65abd /gdb/arch-utils.h
parent8b39fe56a2250e7fc4e8327dc705789e0290c260 (diff)
downloadfsf-binutils-gdb-d90cf509bd4aee2e024979a75685826a5289ba22.zip
fsf-binutils-gdb-d90cf509bd4aee2e024979a75685826a5289ba22.tar.gz
fsf-binutils-gdb-d90cf509bd4aee2e024979a75685826a5289ba22.tar.bz2
2003-08-21 Andrew Cagney <cagney@redhat.com>
* sh3-rom.c (sh3_open, sh3e_open): Use gdbarch_update_p to select a specific architecture. * arch-utils.h (set_architecture_from_arch_mach): Delete declaration. (target_architecture_hook): Delete declaration. * arch-utils.c: Delete non GDB_MULTI_ARCH includes. (default_float_format): Assume GDB_MULTI_ARCH. (default_double_format): Assume GDB_MULTI_ARCH. (set_endian_from_file): Delete function. (arch_ok): Delete function. (set_arch): Delete function. (set_architecture_from_arch_mach): Delete function. (set_architecture_from_file): Delete function. (set_architecture): Assume GDB_MULTI_ARCH. (set_gdbarch_from_file): Assume GDB_MULTI_ARCH.
Diffstat (limited to 'gdb/arch-utils.h')
-rw-r--r--gdb/arch-utils.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/gdb/arch-utils.h b/gdb/arch-utils.h
index fcea531..6f53a8d 100644
--- a/gdb/arch-utils.h
+++ b/gdb/arch-utils.h
@@ -78,22 +78,6 @@ extern int core_addr_greaterthan (CORE_ADDR lhs, CORE_ADDR rhs);
extern const struct floatformat *default_float_format (struct gdbarch *gdbarch);
extern const struct floatformat *default_double_format (struct gdbarch *gdbarch);
-/* The following DEPRECATED interfaces are for pre- multi-arch legacy
- targets. */
-
-/* DEPRECATED pre- multi-arch interface. Explicitly set the dynamic
- target-system-dependent parameters based on bfd_architecture and
- machine. This function is deprecated, use
- set_gdbarch_from_arch_machine(). */
-
-extern void set_architecture_from_arch_mach (enum bfd_architecture, unsigned long);
-
-/* DEPRECATED pre- multi-arch interface. Notify the target dependent
- backend of a change to the selected architecture. A zero return
- status indicates that the target did not like the change. */
-
-extern int (*target_architecture_hook) (const struct bfd_arch_info *);
-
/* Identity function on a CORE_ADDR. Just returns its parameter. */
extern CORE_ADDR core_addr_identity (CORE_ADDR addr);