diff options
author | Roland McGrath <roland@gcc.gnu.org> | 1995-02-13 00:55:35 +0000 |
---|---|---|
committer | Roland McGrath <roland@gcc.gnu.org> | 1995-02-13 00:55:35 +0000 |
commit | 0ee902cb1a0ec325de5b4273884cbdee0dacb903 (patch) | |
tree | 4383a3315ec56ce07b0a2db42c0b3aa7d852e5cd | |
parent | 3f3d2ec8db99b0c8a9241c559ffcb2c7bc4a4628 (diff) | |
download | gcc-0ee902cb1a0ec325de5b4273884cbdee0dacb903.zip gcc-0ee902cb1a0ec325de5b4273884cbdee0dacb903.tar.gz gcc-0ee902cb1a0ec325de5b4273884cbdee0dacb903.tar.bz2 |
(expand_call): Add missing paren in wilson's change on 11 Feb 95.
From-SVN: r8914
-rw-r--r-- | gcc/calls.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/calls.c b/gcc/calls.c index 1b5466b..87f610e 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -948,13 +948,13 @@ expand_call (exp, target, ignore) #if !defined(SETUP_INCOMING_VARARGS) || defined(STRICT_ARGUMENT_NAMING) if (TYPE_ARG_TYPES (funtype) != 0) n_named_args - = list_length (TYPE_ARG_TYPES (funtype)) + = (list_length (TYPE_ARG_TYPES (funtype)) #ifndef STRICT_ARGUMENT_NAMING - /* Don't include the last named arg. */ - - 1 + /* Don't include the last named arg. */ + - 1 #endif - /* Count the struct value address, if it is passed as a parm. */ - + structure_value_addr_parm); + /* Count the struct value address, if it is passed as a parm. */ + + structure_value_addr_parm); else #endif /* If we know nothing, treat all args as named. */ @@ -968,7 +968,7 @@ expand_call (exp, target, ignore) args_size.var = 0; /* In this loop, we consider args in the order they are written. - We fill up ARGS from the front of from the back if necessary + We fill up ARGS from the front or from the back if necessary so that in any case the first arg to be pushed ends up at the front. */ #ifdef PUSH_ARGS_REVERSED |