Commit dfd0a3de by Ian Lance Taylor Committed by Ian Lance Taylor

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

From-SVN: r120470
parent 59e50498
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
......
......@@ -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);
}
}
}
......
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