Commit 0651fbc0 by Alexandre Oliva Committed by Alexandre Oliva

mn10300.h (DBX_REGISTER_NUMBER): Reverted 2000-08-26's patch.

* config/mn10300/mn10300.h (DBX_REGISTER_NUMBER): Reverted
2000-08-26's patch.
(EXTRA_CONSTRAINT): Formatting changes.

From-SVN: r40031
parent f9edddab
2001-02-24 Alexandre Oliva <aoliva@redhat.com>
* config/mn10300/mn10300.h (DBX_REGISTER_NUMBER): Reverted
2000-08-26's patch.
(EXTRA_CONSTRAINT): Formatting changes.
2001-02-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 2001-02-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* rtl.c (rtl_check_failed_code2): Fix typo in last change. * rtl.c (rtl_check_failed_code2): Fix typo in last change.
......
...@@ -698,7 +698,9 @@ struct cum_arg {int nbytes; }; ...@@ -698,7 +698,9 @@ struct cum_arg {int nbytes; };
&& INT_8_BITS (INTVAL (XEXP (XEXP (OP, 0), 1)))))) && INT_8_BITS (INTVAL (XEXP (XEXP (OP, 0), 1))))))
#define EXTRA_CONSTRAINT(OP, C) \ #define EXTRA_CONSTRAINT(OP, C) \
((C) == 'R' ? OK_FOR_R (OP) : (C) == 'S' ? GET_CODE (OP) == SYMBOL_REF : 0) ((C) == 'R' ? OK_FOR_R (OP) \
: (C) == 'S' ? GET_CODE (OP) == SYMBOL_REF \
: 0)
/* Maximum number of registers that can appear in a valid memory address. */ /* Maximum number of registers that can appear in a valid memory address. */
...@@ -1049,12 +1051,7 @@ do { char dstr[30]; \ ...@@ -1049,12 +1051,7 @@ do { char dstr[30]; \
#define DWARF2_ASM_LINE_DEBUG_INFO 1 #define DWARF2_ASM_LINE_DEBUG_INFO 1
#define DBX_REGISTER_NUMBER(REGNO) \ #define DBX_REGISTER_NUMBER(REGNO) (REGNO)
(REGNO_DATA_P ((REGNO)) ? (0 + (REGNO) - FIRST_DATA_REGNUM) \
: REGNO_ADDRESS_P ((REGNO)) ? (4 + (REGNO) - FIRST_ADDRESS_REGNUM) \
: REGNO_SP_P ((REGNO)) ? 8 \
: REGNO_EXTENDED_P ((REGNO)) ? (15 + (REGNO) - FIRST_EXTENDED_REGNUM) \
: -1)
/* GDB always assumes the current function's frame begins at the value /* GDB always assumes the current function's frame begins at the value
of the stack pointer upon entry to the current function. Accessing of the stack pointer upon entry to the current function. Accessing
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment