* config/mips/tm-mips.h (STABS_REG_TO_REGNUM): Match it with the gcc
authorPeter Schauer <Peter.Schauer@mytum.de>
Sat, 1 May 1993 09:56:13 +0000 (09:56 +0000)
committerPeter Schauer <Peter.Schauer@mytum.de>
Sat, 1 May 1993 09:56:13 +0000 (09:56 +0000)
definition.
* config/mips/tm-irix3.h (STABS_REG_TO_REGNUM): Add.

gdb/config/mips/tm-irix3.h
gdb/config/mips/tm-mips.h

index a227aa474b2791a92abaafeaabbc816da6723331..ae59a25dbecf1b88e5720764de9aed10a5e3c5ec 100644 (file)
@@ -315,3 +315,7 @@ typedef struct mips_extra_func_info {
    mips_extra_func_info_t's off of this.  */
 
 #define MIPS_EFI_SYMBOL_NAME "__GDB_EFI_INFO__"
+
+/* Convert a dbx stab register number (from `r' declaration) to a gdb REGNUM */
+
+#define STAB_REG_TO_REGNUM(num) ((num) < 32 ? (num) : (num)+FP0_REGNUM-38)
index 8dbd951ac6c0cc009bfa8804cf4ebb27fa551033..f3bd9ec49f4115a68ade6c7efc9fd6b909532eb0 100644 (file)
@@ -377,4 +377,6 @@ typedef struct mips_extra_func_info {
    and equivalence between CORE_ADDR and FRAME_ADDR. */
 extern struct frame_info *setup_arbitrary_frame PARAMS ((int, CORE_ADDR *));
 
-#define STAB_REG_TO_REGNUM(num) ((num) < 32 ? (num) : (num)+FP0_REGNUM-32)
+/* Convert a dbx stab register number (from `r' declaration) to a gdb REGNUM */
+
+#define STAB_REG_TO_REGNUM(num) ((num) < 32 ? (num) : (num)+FP0_REGNUM-38)