Commit bff0b1a6 by Jason Merrill Committed by Jason Merrill

re PR c++/43502 ([C++0x] uninitialised read in grokfndecl() with lambda…

re PR c++/43502 ([C++0x] uninitialised read in grokfndecl() with lambda functions cause -fcompare-debug failures)

	PR c++/43502
	* parser.c (make_declarator): Initialize id_loc.
	(cp_parser_lambda_declarator_opt): And set it.

From-SVN: r157701
parent 1e06efb6
2010-03-24 Jason Merrill <jason@redhat.com>
PR c++/43502
* parser.c (make_declarator): Initialize id_loc.
(cp_parser_lambda_declarator_opt): And set it.
2010-03-23 Jason Merrill <jason@redhat.com>
Make lambda conversion op and op() non-static.
......
......@@ -890,6 +890,7 @@ make_declarator (cp_declarator_kind kind)
declarator->attributes = NULL_TREE;
declarator->declarator = NULL;
declarator->parameter_pack_p = false;
declarator->id_loc = UNKNOWN_LOCATION;
return declarator;
}
......@@ -7395,6 +7396,7 @@ cp_parser_lambda_declarator_opt (cp_parser* parser, tree lambda_expr)
declarator = make_call_declarator (declarator, param_list, quals,
exception_spec,
/*late_return_type=*/NULL_TREE);
declarator->id_loc = LAMBDA_EXPR_LOCATION (lambda_expr);
fco = grokmethod (&return_type_specs,
declarator,
......
2010-03-24 Jason Merrill <jason@redhat.com>
PR c++/43502
* g++.dg/cpp0x/lambda/lambda-debug.C: New.
2010-03-24 Martin Jambor <mjambor@suse.cz>
* gcc.dg/ipa/ipa-1.c: Delete trailing spaces, put the call to f into
......
// PR c++/43502
// { dg-options "-std=c++0x -fcompare-debug" }
void g (int n)
{
int bef ([]{return 0;}());
}
struct S {
void f (int = []{return 0;}(), int = [] { return 0;}());
};
int main ()
{
S ().f ();
return 0;
}
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