From d0f9021ae392a7bb8a4a2ee9b649a9b7266eb5f5 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Wed, 8 Apr 1998 18:44:41 -0600 Subject: [PATCH] calls.c (expand_call): Fix typo. 8 * calls.c (expand_call): Fix typo. From-SVN: r19068 --- gcc/calls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2