Commit d80d2d2a by Kazu Hirata Committed by Kazu Hirata

calls.c (expand_call): Fix a comment typo.

2001-04-21  Kazu Hirata  <kazu@hxi.com>

	* calls.c (expand_call): Fix a comment typo.

From-SVN: r41488
parent e8c8470b
...@@ -16,6 +16,8 @@ ...@@ -16,6 +16,8 @@
Fix a comment typo. Fix a comment typo.
* config/i960/i960.c (signed_arith_operand): Likewise. * config/i960/i960.c (signed_arith_operand): Likewise.
* calls.c (expand_call): Fix a comment typo.
2001-04-20 Zack Weinberg <zackw@stanford.edu> 2001-04-20 Zack Weinberg <zackw@stanford.edu>
* configure.in: Probe for times, clock, struct tms, and clock_t. * configure.in: Probe for times, clock, struct tms, and clock_t.
......
...@@ -2374,8 +2374,8 @@ expand_call (exp, target, ignore) ...@@ -2374,8 +2374,8 @@ expand_call (exp, target, ignore)
args = (struct arg_data *) alloca (num_actuals * sizeof (struct arg_data)); args = (struct arg_data *) alloca (num_actuals * sizeof (struct arg_data));
memset ((char *) args, 0, num_actuals * sizeof (struct arg_data)); memset ((char *) args, 0, num_actuals * sizeof (struct arg_data));
/* Build up entries inthe ARGS array, compute the size of the arguments /* Build up entries in the ARGS array, compute the size of the
into ARGS_SIZE, etc. */ arguments into ARGS_SIZE, etc. */
initialize_argument_information (num_actuals, args, &args_size, initialize_argument_information (num_actuals, args, &args_size,
n_named_args, actparms, fndecl, n_named_args, actparms, fndecl,
&args_so_far, reg_parm_stack_space, &args_so_far, reg_parm_stack_space,
......
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