OSDN Git Service

* config/mips/tm-irix6.h (MIPS_REGSIZE): Define to be 8.
authorkevinb <kevinb>
Wed, 31 Jul 2002 17:22:05 +0000 (17:22 +0000)
committerkevinb <kevinb>
Wed, 31 Jul 2002 17:22:05 +0000 (17:22 +0000)
(REGISTER_VIRTUAL_TYPE): Some registers are now 64 bits wide.

gdb/ChangeLog
gdb/config/mips/tm-irix6.h

index ef18e71..a7bd04c 100644 (file)
@@ -1,5 +1,10 @@
 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):
        Use gdb_assert() instead of explicit call to internal_error().
 
index 70b5f6f..1d2ed39 100644 (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
       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