Commit b1c95bb5 by Richard Biener Committed by Richard Biener

gimple-parser.c (c_parser_gimple_compound_statement): Handle nops.

2017-01-13  Richard Biener  <rguenther@suse.de>

	* gimple-parser.c (c_parser_gimple_compound_statement): Handle
	nops.

From-SVN: r244434
parent 3d78845f
2017-01-13 Richard Biener <rguenther@suse.de>
* gimple-parser.c (c_parser_gimple_compound_statement): Handle
nops.
2017-01-13 Richard Biener <rguenther@suse.de>
* gimple-parser.c (c_parser_gimple_postfix_expression): Parse
_Literal ( type-name ) number.
......
......@@ -211,6 +211,17 @@ c_parser_gimple_compound_statement (c_parser *parser, gimple_seq *seq)
}
goto expr_stmt;
case CPP_SEMICOLON:
{
/* Empty stmt. */
location_t loc = c_parser_peek_token (parser)->location;
c_parser_consume_token (parser);
gimple *nop = gimple_build_nop ();
gimple_set_location (nop, loc);
gimple_seq_add_stmt (seq, nop);
break;
}
default:
expr_stmt:
c_parser_gimple_statement (parser, seq);
......
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