Commit b06e51a0 by Jason Merrill Committed by Jason Merrill

re PR c++/41553 (timeout when compiling g++.old-deja/g++.other/crash28.C)

	PR c++/41553
	* parser.c (cp_parser_lambda_introducer): Avoid infinite loop on
	parse error.

From-SVN: r152433
parent 0d6bfda8
2009-10-03 Jason Merrill <jason@redhat.com>
PR c++/41553
* parser.c (cp_parser_lambda_introducer): Avoid infinite loop on
parse error.
2009-10-02 Jason Merrill <jason@redhat.com>
* mangle.c (write_unnamed_type_name): Implement.
......
......@@ -7176,7 +7176,7 @@ cp_parser_lambda_introducer (cp_parser* parser, tree lambda_expr)
/*recovering=*/true,
/*or_comma=*/true,
/*consume_paren=*/true);
continue;
break;
}
/* Find the initializer for this capture. */
......
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