diff options
author | David Edelsohn <edelsohn@gnu.org> | 2004-02-08 02:48:34 +0000 |
---|---|---|
committer | David Edelsohn <dje@gcc.gnu.org> | 2004-02-07 21:48:34 -0500 |
commit | f276fb546f0730ae3f2abc33bd5ae00a085a0cf3 (patch) | |
tree | f3e81301986dd803f43b651aff6f054afcb0e497 /gcc/function.c | |
parent | fefcb65c3d9a4a07ea6cd81cabe82169ab2bdd79 (diff) | |
download | gcc-f276fb546f0730ae3f2abc33bd5ae00a085a0cf3.zip gcc-f276fb546f0730ae3f2abc33bd5ae00a085a0cf3.tar.gz gcc-f276fb546f0730ae3f2abc33bd5ae00a085a0cf3.tar.bz2 |
* function.c (assign_parms): Fix formatting.
From-SVN: r77478
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/function.c b/gcc/function.c index 890ebd3..6596e0e 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -4392,7 +4392,8 @@ assign_parms (tree fndecl) /* Set NAMED_ARG if this arg should be treated as a named arg. For most machines, if this is a varargs/stdarg function, then we treat the last named arg as if it were anonymous too. */ - named_arg = targetm.calls.strict_argument_naming (&args_so_far) ? 1 : ! last_named; + named_arg = (targetm.calls.strict_argument_naming (&args_so_far) + ? 1 : !last_named); if (TREE_TYPE (parm) == error_mark_node /* This can happen after weird syntax errors |