diff options
author | Jeff Law <law@gcc.gnu.org> | 1996-03-29 07:37:11 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1996-03-29 07:37:11 -0700 |
commit | 2c7ee1a641d927dc3f45170f0ff4ecd6dd8f31c7 (patch) | |
tree | 2387c87408945f8be6a4ed190c7deb281795a70e /gcc/config/pyr/pyr.h | |
parent | c4d98c846dc38fa87a9e91991e647afcc44d2f45 (diff) | |
download | gcc-2c7ee1a641d927dc3f45170f0ff4ecd6dd8f31c7.zip gcc-2c7ee1a641d927dc3f45170f0ff4ecd6dd8f31c7.tar.gz gcc-2c7ee1a641d927dc3f45170f0ff4ecd6dd8f31c7.tar.bz2 |
calls.c (expand_call): Remove current_call_is_indirect nonsense.
* calls.c (expand_call): Remove current_call_is_indirect nonsense.
Add additional argument to INIT_CUMULATIVE_ARGS.
(emit_library_call): Likewise.
(emit_library_call_value): Likewise.
* expr.c (expand_builtin): Likewise.
* function.c (assign_parms): Likewise.
* cp/method.c (emit_thunk): Likewise.
* config/pa/pa.h (hppa_args): New field "indirect".
(INIT_CUMULATIVE_ARGS): Initialize "indirect" field.
(FUNCTION_ARG): Check "indirect" field, rather than
"current_call_is_indirect".
* All other backends updated with new argument to
INIT_CUMULATIVE_ARGS
From-SVN: r11641
Diffstat (limited to 'gcc/config/pyr/pyr.h')
-rw-r--r-- | gcc/config/pyr/pyr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/pyr/pyr.h b/gcc/config/pyr/pyr.h index e59bd0a..881956d 100644 --- a/gcc/config/pyr/pyr.h +++ b/gcc/config/pyr/pyr.h @@ -629,7 +629,7 @@ extern int inner_param_safe_helper(); for a call to a function whose data type is FNTYPE. For a library call, FNTYPE is 0. */ -#define INIT_CUMULATIVE_ARGS(CUM,FNTYPE,LIBNAME) \ +#define INIT_CUMULATIVE_ARGS(CUM,FNTYPE,LIBNAME,INDIRECT) \ ((CUM) = (FNTYPE && !flag_pcc_struct_return \ && aggregate_value_p (TREE_TYPE (FNTYPE)))) |