Commit d0f9021a by Jeff Law

calls.c (expand_call): Fix typo.

8
        * calls.c (expand_call): Fix typo.

From-SVN: r19068
parent b1d6ccb8
...@@ -989,7 +989,7 @@ expand_call (exp, target, ignore) ...@@ -989,7 +989,7 @@ expand_call (exp, target, ignore)
n_named_args n_named_args
= (list_length (TYPE_ARG_TYPES (funtype)) = (list_length (TYPE_ARG_TYPES (funtype))
/* Don't include the last named arg. */ /* 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. */ /* Count the struct value address, if it is passed as a parm. */
+ structure_value_addr_parm); + structure_value_addr_parm);
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment