diff options
author | Jeff Law <law@gcc.gnu.org> | 1998-04-08 18:44:41 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-04-08 18:44:41 -0600 |
commit | d0f9021ae392a7bb8a4a2ee9b649a9b7266eb5f5 (patch) | |
tree | 08c786f6a4b7ab83e26dff94f392a34c8e506521 | |
parent | b1d6ccb81b7cba5c9f84cb3457dc1daed3c35f2e (diff) | |
download | gcc-d0f9021ae392a7bb8a4a2ee9b649a9b7266eb5f5.zip gcc-d0f9021ae392a7bb8a4a2ee9b649a9b7266eb5f5.tar.gz gcc-d0f9021ae392a7bb8a4a2ee9b649a9b7266eb5f5.tar.bz2 |
calls.c (expand_call): Fix typo.
8
* calls.c (expand_call): Fix typo.
From-SVN: r19068
-rw-r--r-- | gcc/calls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/calls.c b/gcc/calls.c index 2716caf..3534bdd 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 |