Getting rid of some debug output

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-08-14 16:12:12 +02:00
parent 3017c92edf
commit 78d223fdcb

View file

@ -1172,11 +1172,9 @@ static bool parser_parse_for(parser_t *parser, ast_block *block, ast_expression
/* parse the condition */ /* parse the condition */
if (parser->tok != ';') { if (parser->tok != ';') {
printf("going cond!\n");
cond = parser_expression_leave(parser); cond = parser_expression_leave(parser);
if (!cond) if (!cond)
goto onerr; goto onerr;
printf("going cond!\n");
} }
/* move on to incrementor */ /* move on to incrementor */