Commit 60ff8e16 by Jason Merrill Committed by Jason Merrill

re PR c++/60980 (ICE in build_special_member_call, at cp/call.c:7447)

	PR c++/60980
	* init.c (build_value_init): Don't try to call an array constructor.

From-SVN: r209934
parent 4f419f8c
2014-04-30 Jason Merrill <jason@redhat.com>
PR c++/60980
* init.c (build_value_init): Don't try to call an array constructor.
PR c++/60951
* typeck2.c (massage_init_elt): Use maybe_constant_init.
......
......@@ -339,7 +339,8 @@ build_value_init (tree type, tsubst_flags_t complain)
gcc_assert (!processing_template_decl
|| (SCALAR_TYPE_P (type) || TREE_CODE (type) == ARRAY_TYPE));
if (type_build_ctor_call (type))
if (CLASS_TYPE_P (type)
&& type_build_ctor_call (type))
{
tree ctor = build_aggr_init_expr
(type,
......
// PR c++/60980
// { dg-do compile { target c++11 } }
struct x0
{
x0 () = default;
};
struct x1
{
x0 x2[2];
void x3 ()
{
x1 ();
}
};
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