diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-03-29 14:37:11 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-03-29 14:37:11 +0000 |
commit | 66c07356e43182fbe258b9a3bc0c68ee84b0c773 (patch) | |
tree | 2387c87408945f8be6a4ed190c7deb281795a70e /gcc/config/clipper | |
parent | 75f1394c1f332e1498f097f291c138ff375bad86 (diff) | |
download | ppe42-gcc-66c07356e43182fbe258b9a3bc0c68ee84b0c773.tar.gz ppe42-gcc-66c07356e43182fbe258b9a3bc0c68ee84b0c773.zip |
* 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
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@11641 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/clipper')
-rw-r--r-- | gcc/config/clipper/clipper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/clipper/clipper.h b/gcc/config/clipper/clipper.h index 372c33c4997..9600df34177 100644 --- a/gcc/config/clipper/clipper.h +++ b/gcc/config/clipper/clipper.h @@ -461,7 +461,7 @@ struct _clipper_cum_args { int num; int size; }; clipper passes the address of a struct in r0, set num = 1 in this case */ -#define INIT_CUMULATIVE_ARGS(CUM,FNTYPE,LIBNAME) \ +#define INIT_CUMULATIVE_ARGS(CUM,FNTYPE,LIBNAME,INDIRECT) \ ((CUM).num = ((FNTYPE) != 0 && aggregate_value_p (TREE_TYPE (FNTYPE))), \ (CUM).size = 0) |