Commit b9263ae5 by DJ Delorie Committed by DJ Delorie

mep.h (FUNCTION_ARG_REGNO_P): Add coprocessor registers used to pass vectors.

* config/mep/mep.h (FUNCTION_ARG_REGNO_P): Add coprocessor
registers used to pass vectors.

From-SVN: r149455
parent 9eb5c65c
2009-07-09 DJ Delorie <dj@redhat.com> 2009-07-09 DJ Delorie <dj@redhat.com>
* config/mep/mep.h (FUNCTION_ARG_REGNO_P): Add coprocessor
registers used to pass vectors.
* config/mep/mep.c (mep_option_can_inline_p): Remove error call. * config/mep/mep.c (mep_option_can_inline_p): Remove error call.
2009-07-09 Tom Tromey <tromey@redhat.com> 2009-07-09 Tom Tromey <tromey@redhat.com>
......
...@@ -534,7 +534,9 @@ typedef struct ...@@ -534,7 +534,9 @@ typedef struct
#define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED) \ #define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED) \
mep_arg_advance (& (CUM), MODE, TYPE, NAMED) mep_arg_advance (& (CUM), MODE, TYPE, NAMED)
#define FUNCTION_ARG_REGNO_P(REGNO) ((REGNO) >= 1 && (REGNO) <= 4) #define FUNCTION_ARG_REGNO_P(REGNO) \
(((REGNO) >= 1 && (REGNO) <= 4) \
|| ((REGNO) >= FIRST_CR_REGNO + 1 && (REGNO) <= FIRST_CR_REGNO + 4))
#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