Commit 2e96ac06 by Richard Biener Committed by Richard Biener

genmatch.c (parser::parse_expr): Improve error message for mis-placed flags.

2015-09-17  Richard Biener  <rguenther@suse.de>

	* genmatch.c (parser::parse_expr): Improve error message
	for mis-placed flags.

From-SVN: r227859
parent bf2dbec4
2015-09-17 Richard Biener <rguenther@suse.de>
* genmatch.c (parser::parse_expr): Improve error message
for mis-placed flags.
2015-09-17 Richard Biener <rguenther@suse.de>
* passes.c (rest_of_decl_compilation): Always call early_global_decl
debug hook when we created a varpool node.
* dwarf2out.c (dwarf2out_late_global_decl): When in LTO call
......@@ -3857,6 +3857,9 @@ parser::parse_expr ()
e->expr_type = expr_type;
return op;
}
else if (!(token->flags & PREV_WHITE))
fatal_at (token, "expected expression operand");
e->append_op (parse_op ());
}
while (1);
......
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