Commit 2ef7251f by Marek Polacek Committed by Marek Polacek

re PR c++/58510 ([c++11] ICE with multiple non-static data initializations in union)

	PR c++/58510
cp/
	* init.c (sort_mem_initializers): Splice when giving an error.
testsuite/
	* g++.dg/cpp0x/pr58510.C: New test.

From-SVN: r203165
parent fc7657bb
2013-10-03 Marek Polacek <polacek@redhat.com>
PR c++/58510
* init.c (sort_mem_initializers): Splice when giving an error.
2013-10-02 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/58535
......
......@@ -980,9 +980,12 @@ sort_mem_initializers (tree t, tree mem_inits)
else if (TREE_VALUE (*last_p) && !TREE_VALUE (init))
goto splice;
else
error_at (DECL_SOURCE_LOCATION (current_function_decl),
"initializations for multiple members of %qT",
ctx);
{
error_at (DECL_SOURCE_LOCATION (current_function_decl),
"initializations for multiple members of %qT",
ctx);
goto splice;
}
}
last_p = p;
......
2013-10-03 Marek Polacek <polacek@redhat.com>
PR c++/58510
* g++.dg/cpp0x/pr58510.C: New test.
2013-10-03 Marc Glisse <marc.glisse@inria.fr>
PR c++/19476
......
// PR c++/58510
// { dg-do compile { target c++11 } }
void foo()
{
union
{ // { dg-error "multiple" }
int i = 0;
char c = 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