diff options
Diffstat (limited to 'gcc/config/d30v/d30v.h')
-rw-r--r-- | gcc/config/d30v/d30v.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/d30v/d30v.h b/gcc/config/d30v/d30v.h index ba93113..3138429 100644 --- a/gcc/config/d30v/d30v.h +++ b/gcc/config/d30v/d30v.h @@ -1622,8 +1622,8 @@ typedef struct d30v_stack { being processed. Thus, each time this macro is called, either LIBNAME or FNTYPE is nonzero, but never both of them at once. */ -#define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, INDIRECT) \ - d30v_init_cumulative_args (&CUM, FNTYPE, LIBNAME, INDIRECT, FALSE) +#define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, FNDECL) \ + d30v_init_cumulative_args (&CUM, FNTYPE, LIBNAME, FNDECL, FALSE) /* Like `INIT_CUMULATIVE_ARGS' but overrides it for the purposes of finding the arguments for the function being compiled. If this macro is undefined, @@ -1634,7 +1634,7 @@ typedef struct d30v_stack { LIBNAME exists for symmetry with `INIT_CUMULATIVE_ARGS'. */ #define INIT_CUMULATIVE_INCOMING_ARGS(CUM, FNTYPE, LIBNAME) \ - d30v_init_cumulative_args (&CUM, FNTYPE, LIBNAME, FALSE, TRUE) + d30v_init_cumulative_args (&CUM, FNTYPE, LIBNAME, NULL, TRUE) /* A C statement (sans semicolon) to update the summarizer variable CUM to advance past an argument in the argument list. The values MODE, TYPE and |