* c-common.c (check_function_nonnull): Whitespace fix.

From-SVN: r120470
This commit is contained in:
Ian Lance Taylor 2007-01-05 06:16:56 +00:00 committed by Ian Lance Taylor
parent 59e504989c
commit dfd0a3de8f
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2007-01-04 Ian Lance Taylor <iant@google.com>
* c-common.c (check_function_nonnull): Whitespace fix.
2007-01-04 Jan Hubicka <jh@suse.cz>
* tree-optimize.c (execute_fixup_cfg): Correct previously mistakely

View File

@ -5587,11 +5587,11 @@ check_function_nonnull (tree attrs, tree params)
param_num++, param = TREE_CHAIN (param))
{
if (!param)
break;
break;
if (!args || nonnull_check_p (args, param_num))
check_function_arguments_recurse (check_nonnull_arg, NULL,
TREE_VALUE (param),
param_num);
check_function_arguments_recurse (check_nonnull_arg, NULL,
TREE_VALUE (param),
param_num);
}
}
}