aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-parser.c
diff options
context:
space:
mode:
authorUros Bizjak <uros@gcc.gnu.org>2010-10-17 20:29:32 +0200
committerUros Bizjak <uros@gcc.gnu.org>2010-10-17 20:29:32 +0200
commit91b90ead334deba8a963afbf1cb6947ca16bf2ff (patch)
treefaba9202aefcd99a9119767fce634c2097cb144e /gcc/c-parser.c
parentefb7b456501344ef0670c15f35e8945906ef63bb (diff)
downloadgcc-91b90ead334deba8a963afbf1cb6947ca16bf2ff.zip
gcc-91b90ead334deba8a963afbf1cb6947ca16bf2ff.tar.gz
gcc-91b90ead334deba8a963afbf1cb6947ca16bf2ff.tar.bz2
c-parser.c (c_parser_for_statement): Move initialization of cond and incr before if.
* c-parser.c (c_parser_for_statement): Move initialization of cond and incr before if. From-SVN: r165592
Diffstat (limited to 'gcc/c-parser.c')
-rw-r--r--gcc/c-parser.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/gcc/c-parser.c b/gcc/c-parser.c
index e4230b9..8338e9d 100644
--- a/gcc/c-parser.c
+++ b/gcc/c-parser.c
@@ -4568,15 +4568,12 @@ c_parser_for_statement (c_parser *parser)
/* Open a compound statement in Objective-C as well, just in case this is
as foreach expression. */
block = c_begin_compound_stmt (flag_isoc99 || c_dialect_objc ());
+ cond = error_mark_node;
+ incr = error_mark_node;
if (c_parser_require (parser, CPP_OPEN_PAREN, "expected %<(%>"))
{
/* Parse the initialization declaration or expression. */
- cond = error_mark_node;
object_expression = error_mark_node;
- /* Initializing incr should not be necessary, but it avoids
- bogus warnings of uninitialized uses. */
- incr = error_mark_node;
-
if (c_parser_next_token_is (parser, CPP_SEMICOLON))
{
c_parser_consume_token (parser);
@@ -4694,11 +4691,6 @@ c_parser_for_statement (c_parser *parser)
}
c_parser_skip_until_found (parser, CPP_CLOSE_PAREN, "expected %<)%>");
}
- else
- {
- cond = error_mark_node;
- incr = error_mark_node;
- }
save_break = c_break_label;
c_break_label = NULL_TREE;
save_cont = c_cont_label;