* config/mips/tm-irix6.h (MIPS_REGSIZE): Define to be 8.

(REGISTER_VIRTUAL_TYPE): Some registers are now 64 bits wide.
This commit is contained in:
Kevin Buettner 2002-07-31 17:22:06 +00:00
parent c6caf09098
commit 7fe7e44e2c
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-07-31 Kevin Buettner <kevinb@redhat.com>
* config/mips/tm-irix6.h (MIPS_REGSIZE): Define to be 8.
(REGISTER_VIRTUAL_TYPE): Some registers are now 64 bits wide.
2002-07-31 Kevin Buettner <kevinb@redhat.com>
* utils.c (host_pointer_to_address, address_to_host_pointer):

View File

@ -21,6 +21,9 @@
#include "mips/tm-bigmips.h"
#undef MIPS_REGSIZE
#define MIPS_REGSIZE 8
/* SGI's assembler doesn't grok dollar signs in identifiers.
So we use dots instead. This item must be coordinated with G++. */
#undef CPLUS_MARKER
@ -89,11 +92,12 @@
32 * sizeof(double) + ((N) - 32) * MIPS_REGSIZE)
#undef REGISTER_VIRTUAL_TYPE
/* define 8 byte register type */
#define REGISTER_VIRTUAL_TYPE(N) \
(((N) >= FP0_REGNUM && (N) < FP0_REGNUM+32) ? builtin_type_double \
: ((N) == 32 /*SR*/) ? builtin_type_uint32 \
: ((N) >= 70 && (N) <= 89) ? builtin_type_uint32 \
: builtin_type_int)
: builtin_type_long_long)
/* Force N32 ABI as the default. */
#define MIPS_DEFAULT_ABI MIPS_ABI_N32