From 0ee902cb1a0ec325de5b4273884cbdee0dacb903 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 13 Feb 1995 00:55:35 +0000 Subject: [PATCH] (expand_call): Add missing paren in wilson's change on 11 Feb 95. From-SVN: r8914 --- gcc/calls.c | 12 ++++++------ 1 file 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 -- 2.7.4