aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazu Hirata <kazu@hxi.com>2001-04-21 21:38:22 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2001-04-21 21:38:22 +0000
commitd80d2d2a5bc41e42d5670a5336fd38307eebb1d9 (patch)
tree73e32a15d7744484d03d8e81701e71fbf85a5097
parente8c8470b1cfdb6d9abebf7e976317abeb8956c40 (diff)
downloadgcc-d80d2d2a5bc41e42d5670a5336fd38307eebb1d9.zip
gcc-d80d2d2a5bc41e42d5670a5336fd38307eebb1d9.tar.gz
gcc-d80d2d2a5bc41e42d5670a5336fd38307eebb1d9.tar.bz2
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
-rw-r--r--gcc/ChangeLog2
-rw-r--r--gcc/calls.c4
2 files changed, 4 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f829983..9ef7497 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -16,6 +16,8 @@
Fix a comment typo.
* config/i960/i960.c (signed_arith_operand): Likewise.
+ * calls.c (expand_call): Fix a comment typo.
+
2001-04-20 Zack Weinberg <zackw@stanford.edu>
* configure.in: Probe for times, clock, struct tms, and clock_t.
diff --git a/gcc/calls.c b/gcc/calls.c
index d0f3a14..43acb37 100644
--- a/gcc/calls.c
+++ b/gcc/calls.c
@@ -2374,8 +2374,8 @@ expand_call (exp, target, ignore)
args = (struct arg_data *) alloca (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
- into ARGS_SIZE, etc. */
+ /* Build up entries in the ARGS array, compute the size of the
+ arguments into ARGS_SIZE, etc. */
initialize_argument_information (num_actuals, args, &args_size,
n_named_args, actparms, fndecl,
&args_so_far, reg_parm_stack_space,