summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2002-07-31 17:22:06 +0000
committerKevin Buettner <kevinb@redhat.com>2002-07-31 17:22:06 +0000
commit46222862eb499a8b977e5bcb06fe91123282f5ec (patch)
tree8fcb31bbfb0fac0af706265b4f56defd1666034f
parent81b888c1b8b95b72845bc410d83c71405eb1ceb9 (diff)
downloadgdb-46222862eb499a8b977e5bcb06fe91123282f5ec.tar.gz
* config/mips/tm-irix6.h (MIPS_REGSIZE): Define to be 8.
(REGISTER_VIRTUAL_TYPE): Some registers are now 64 bits wide.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/config/mips/tm-irix6.h6
2 files changed, 10 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index ef18e71b1a9..a7bd04cb397 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -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().
diff --git a/gdb/config/mips/tm-irix6.h b/gdb/config/mips/tm-irix6.h
index 70b5f6fb7fc..1d2ed392bbb 100644
--- a/gdb/config/mips/tm-irix6.h
+++ b/gdb/config/mips/tm-irix6.h
@@ -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