From: Ian Lance Taylor Date: Fri, 5 Jan 2007 06:16:56 +0000 (+0000) Subject: * c-common.c (check_function_nonnull): Whitespace fix. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dfd0a3de8f8f01957f0ca433d16cdd9134769e09;p=gcc.git * c-common.c (check_function_nonnull): Whitespace fix. From-SVN: r120470 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fb01be3f6f5..5bcf02a4def 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2007-01-04 Ian Lance Taylor + + * c-common.c (check_function_nonnull): Whitespace fix. + 2007-01-04 Jan Hubicka * tree-optimize.c (execute_fixup_cfg): Correct previously mistakely diff --git a/gcc/c-common.c b/gcc/c-common.c index cca1490a9d5..2fd2a81b924 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -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); } } }