diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-06-20 04:04:44 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-06-20 04:04:44 +0000 |
commit | 5861a190a8d850e42d29f2077b32f8501a8722f6 (patch) | |
tree | 05255e1d32d4c3ae3848aad77ec8670beb99079d /gdb/config/mips | |
parent | d81bb16ac041a24abb0d108dfd6491d6b097aa03 (diff) | |
download | gdb-5861a190a8d850e42d29f2077b32f8501a8722f6.zip gdb-5861a190a8d850e42d29f2077b32f8501a8722f6.tar.gz gdb-5861a190a8d850e42d29f2077b32f8501a8722f6.tar.bz2 |
2003-06-19 Andrew Cagney <cagney@redhat.com>
* config/mips/tm-mips.h (REGISTER_CONVERT_TO_TYPE): Delete.
(REGISTER_CONVERT_FROM_TYPE): Delete.
(mips_register_convert_to_type): Delete declaration.
(mips_register_convert_from_type): Delete declaration.
* linux-nat.h (struct target_ops): Declare opaque. s/Linux/Linux
kernel/.
Diffstat (limited to 'gdb/config/mips')
-rw-r--r-- | gdb/config/mips/tm-mips.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/gdb/config/mips/tm-mips.h b/gdb/config/mips/tm-mips.h index 7ae05a4..39421fd 100644 --- a/gdb/config/mips/tm-mips.h +++ b/gdb/config/mips/tm-mips.h @@ -111,25 +111,6 @@ extern int mips_step_skips_delay (CORE_ADDR); : builtin_type_int) #endif -/* All mips targets store doubles in a register pair with the least - significant register in the lower numbered register. - If the target is big endian, double register values need conversion - between memory and register formats. */ - -extern void mips_register_convert_to_type (int regnum, - struct type *type, - char *buffer); -extern void mips_register_convert_from_type (int regnum, - struct type *type, - char *buffer); - -#define REGISTER_CONVERT_TO_TYPE(n, type, buffer) \ - mips_register_convert_to_type ((n), (type), (buffer)) - -#define REGISTER_CONVERT_FROM_TYPE(n, type, buffer) \ - mips_register_convert_from_type ((n), (type), (buffer)) - - /* Special symbol found in blocks associated with routines. We can hang mips_extra_func_info_t's off of this. */ |