Commit 453503d6 by DJ Delorie Committed by DJ Delorie

mep.h (FUNCTION_ARG_REGNO_P): Exclude coprocessor registers if no coprocessor is enabled.

* config/mep/mep.h (FUNCTION_ARG_REGNO_P): Exclude coprocessor
registers if no coprocessor is enabled.

From-SVN: r151257
parent 7e597412
2009-08-31 DJ Delorie <dj@redhat.com>
* config/mep/mep.h (FUNCTION_ARG_REGNO_P): Exclude coprocessor
registers if no coprocessor is enabled.
2009-08-31 Dodji Seketeli <dodji@redhat.com> 2009-08-31 Dodji Seketeli <dodji@redhat.com>
PR debug/30161 PR debug/30161
......
...@@ -531,7 +531,9 @@ typedef struct ...@@ -531,7 +531,9 @@ typedef struct
#define FUNCTION_ARG_REGNO_P(REGNO) \ #define FUNCTION_ARG_REGNO_P(REGNO) \
(((REGNO) >= 1 && (REGNO) <= 4) \ (((REGNO) >= 1 && (REGNO) <= 4) \
|| ((REGNO) >= FIRST_CR_REGNO + 1 && (REGNO) <= FIRST_CR_REGNO + 4)) || ((REGNO) >= FIRST_CR_REGNO + 1 \
&& (REGNO) <= FIRST_CR_REGNO + 4 \
&& TARGET_COP))
#define RETURN_VALUE_REGNUM 0 #define RETURN_VALUE_REGNUM 0
......
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