diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-11 23:27:40 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-11 23:27:40 +0000 |
commit | 6bcfea9e23374b2596b95dee819a021c8ef67252 (patch) | |
tree | d38469d11e239e057646171b9f1320f4dfe9a82a /gcc/calls.c | |
parent | 5d0e87b7f7afa132927bdf223966b0c1669bbd3a (diff) | |
download | gcc-6bcfea9e23374b2596b95dee819a021c8ef67252.tar.gz |
* alias.c: PROTO -> PARAMS.
* basic-block.h: Likewise.
* bitmap.c: Likewise.
* bitmap.h: Likewise.
* builtins.c: Likewise.
* c-aux-info.c: Likewise.
* caller-save.c: Likewise.
* calls.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31338 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/calls.c')
-rw-r--r-- | gcc/calls.c | 75 |
1 files changed, 38 insertions, 37 deletions
diff --git a/gcc/calls.c b/gcc/calls.c index 52fcb94af3c..c2ccfde9b18 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -129,41 +129,42 @@ static int highest_outgoing_arg_in_use; int stack_arg_under_construction; #endif -static int calls_function PROTO ((tree, int)); -static int calls_function_1 PROTO ((tree, int)); -static void emit_call_1 PROTO ((rtx, tree, tree, HOST_WIDE_INT, - HOST_WIDE_INT, HOST_WIDE_INT, rtx, - rtx, int, rtx, int)); -static void precompute_register_parameters PROTO ((int, struct arg_data *, - int *)); -static void store_one_arg PROTO ((struct arg_data *, rtx, int, int, - int)); -static void store_unaligned_arguments_into_pseudos PROTO ((struct arg_data *, - int)); -static int finalize_must_preallocate PROTO ((int, int, - struct arg_data *, - struct args_size *)); -static void precompute_arguments PROTO ((int, int, int, - struct arg_data *, - struct args_size *)); -static int compute_argument_block_size PROTO ((int, - struct args_size *)); -static void initialize_argument_information PROTO ((int, - struct arg_data *, - struct args_size *, - int, tree, tree, - CUMULATIVE_ARGS *, - int, rtx *, int *, - int *, int *)); -static void compute_argument_addresses PROTO ((struct arg_data *, - rtx, int)); -static rtx rtx_for_function_call PROTO ((tree, tree)); -static void load_register_parameters PROTO ((struct arg_data *, - int, rtx *)); +static int calls_function PARAMS ((tree, int)); +static int calls_function_1 PARAMS ((tree, int)); +static void emit_call_1 PARAMS ((rtx, tree, tree, HOST_WIDE_INT, + HOST_WIDE_INT, HOST_WIDE_INT, rtx, + rtx, int, rtx, int)); +static void precompute_register_parameters PARAMS ((int, + struct arg_data *, + int *)); +static void store_one_arg PARAMS ((struct arg_data *, rtx, int, int, + int)); +static void store_unaligned_arguments_into_pseudos PARAMS ((struct arg_data *, + int)); +static int finalize_must_preallocate PARAMS ((int, int, + struct arg_data *, + struct args_size *)); +static void precompute_arguments PARAMS ((int, int, int, + struct arg_data *, + struct args_size *)); +static int compute_argument_block_size PARAMS ((int, + struct args_size *)); +static void initialize_argument_information PARAMS ((int, + struct arg_data *, + struct args_size *, + int, tree, tree, + CUMULATIVE_ARGS *, + int, rtx *, int *, + int *, int *)); +static void compute_argument_addresses PARAMS ((struct arg_data *, + rtx, int)); +static rtx rtx_for_function_call PARAMS ((tree, tree)); +static void load_register_parameters PARAMS ((struct arg_data *, + int, rtx *)); #if defined(ACCUMULATE_OUTGOING_ARGS) && defined(REG_PARM_STACK_SPACE) -static rtx save_fixed_argument_area PROTO ((int, rtx, int *, int *)); -static void restore_fixed_argument_area PROTO ((rtx, rtx, int, int)); +static rtx save_fixed_argument_area PARAMS ((int, rtx, int *, int *)); +static void restore_fixed_argument_area PARAMS ((rtx, rtx, int, int)); #endif /* If WHICH is 1, return 1 if EXP contains a call to the built-in function @@ -2590,8 +2591,8 @@ expand_call (exp, target, ignore) move memory references across the non-const call. */ void -emit_library_call VPROTO((rtx orgfun, int no_queue, enum machine_mode outmode, - int nargs, ...)) +emit_library_call VPARAMS((rtx orgfun, int no_queue, enum machine_mode outmode, + int nargs, ...)) { #ifndef ANSI_PROTOTYPES rtx orgfun; @@ -3087,8 +3088,8 @@ emit_library_call VPROTO((rtx orgfun, int no_queue, enum machine_mode outmode, If VALUE is nonzero, VALUE is returned. */ rtx -emit_library_call_value VPROTO((rtx orgfun, rtx value, int no_queue, - enum machine_mode outmode, int nargs, ...)) +emit_library_call_value VPARAMS((rtx orgfun, rtx value, int no_queue, + enum machine_mode outmode, int nargs, ...)) { #ifndef ANSI_PROTOTYPES rtx orgfun; |