From: Jeff Law Date: Thu, 9 Apr 1998 00:44:41 +0000 (-0600) Subject: calls.c (expand_call): Fix typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d0f9021ae392a7bb8a4a2ee9b649a9b7266eb5f5;p=gcc.git calls.c (expand_call): Fix typo. 8 * calls.c (expand_call): Fix typo. From-SVN: r19068 --- diff --git a/gcc/calls.c b/gcc/calls.c index 2716caff6cb..3534bdde9db 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -989,7 +989,7 @@ expand_call (exp, target, ignore) n_named_args = (list_length (TYPE_ARG_TYPES (funtype)) /* Don't include the last named arg. */ - - (STRICT_ARGUMENT_NAMING ? 0 : -1) + - (STRICT_ARGUMENT_NAMING ? 0 : 1) /* Count the struct value address, if it is passed as a parm. */ + structure_value_addr_parm); else