Commit e278212e by Paolo Carlini Committed by Paolo Carlini

re PR c++/84632 (internal compiler error: tree check: expected record_type or…

re PR c++/84632 (internal compiler error: tree check: expected record_type or union_type or qual_union_type, have array_type in reduced_constant_expression_p, at cp/constexpr.c:1778)

/cp
2018-03-27  Paolo Carlini  <paolo.carlini@oracle.com>
	    Jason Merrill  <jason@redhat.com>

	PR c++/84632
	* init.c (build_aggr_init): When initializing from array,
	reject anything but CONSTRUCTORs and TARGET_EXPRs.
	(build_vec_init): Handle separately ARRAY_TYPEs.

/testsuite
2018-03-27  Paolo Carlini  <paolo.carlini@oracle.com>
	    Jason Merrill  <jason@redhat.com>

	PR c++/84632
	* g++.dg/init/array49.C: New.
	* g++.dg/torture/pr70499.C: Adjust.

Co-Authored-By: Jason Merrill <jason@redhat.com>

From-SVN: r258870
parent 74d2d973
2018-03-27 Paolo Carlini <paolo.carlini@oracle.com>
Jason Merrill <jason@redhat.com>
PR c++/84632
* init.c (build_aggr_init): When initializing from array,
reject anything but CONSTRUCTORs and TARGET_EXPRs.
(build_vec_init): Handle separately ARRAY_TYPEs.
2018-03-26 Jason Merrill <jason@redhat.com>
PR c++/85062 - ICE with alignas in wrong place.
......
......@@ -1688,14 +1688,6 @@ build_aggr_init (tree exp, tree init, int flags, tsubst_flags_t complain)
}
else
{
/* An array may not be initialized use the parenthesized
initialization form -- unless the initializer is "()". */
if (init && TREE_CODE (init) == TREE_LIST)
{
if (complain & tf_error)
error ("bad array initializer");
return error_mark_node;
}
/* Must arrange to initialize each element of EXP
from elements of INIT. */
if (cv_qualified_p (type))
......@@ -1705,14 +1697,17 @@ build_aggr_init (tree exp, tree init, int flags, tsubst_flags_t complain)
from_array = (itype && same_type_p (TREE_TYPE (init),
TREE_TYPE (exp)));
if (init && !from_array
&& !BRACE_ENCLOSED_INITIALIZER_P (init))
if (init && !BRACE_ENCLOSED_INITIALIZER_P (init)
&& (!from_array
|| (TREE_CODE (init) != CONSTRUCTOR
/* Can happen, eg, handling the compound-literals
extension (ext/complit12.C). */
&& TREE_CODE (init) != TARGET_EXPR)))
{
if (complain & tf_error)
permerror (init_loc, "array must be initialized "
"with a brace-enclosed initializer");
else
return error_mark_node;
error_at (init_loc, "array must be initialized "
"with a brace-enclosed initializer");
return error_mark_node;
}
}
......@@ -4367,7 +4362,10 @@ build_vec_init (tree base, tree maxindex, tree init,
else
from = NULL_TREE;
if (from_array == 2)
if (TREE_CODE (type) == ARRAY_TYPE)
elt_init = build_vec_init (to, NULL_TREE, from, /*val_init*/false,
from_array, complain);
else if (from_array == 2)
elt_init = cp_build_modify_expr (input_location, to, NOP_EXPR,
from, complain);
else if (type_build_ctor_call (type))
......
2018-03-27 Paolo Carlini <paolo.carlini@oracle.com>
Jason Merrill <jason@redhat.com>
PR c++/84632
* g++.dg/init/array49.C: New.
* g++.dg/torture/pr70499.C: Adjust.
2018-03-26 Uros Bizjak <ubizjak@gmail.com>
PR target/85073
......
// PR c++/84632
// { dg-additional-options "-w" }
class {
&a; // { dg-error "forbids declaration" }
} b[2] = b; // { dg-error "initialized" }
// { dg-do compile }
// { dg-additional-options "-w -fpermissive -Wno-psabi" }
// { dg-additional-options "-w -Wno-psabi" }
// { dg-additional-options "-mavx" { target x86_64-*-* i?86-*-* } }
typedef double __m256d __attribute__ ((__vector_size__ (32), __may_alias__));
......@@ -30,7 +30,7 @@ struct Foo {
template<typename Tx>
__attribute__((__always_inline__)) inline void inlineFunc(Tx hx[]) {
Tx x = hx[0], y = hx[1];
Tx lam[1] = (x*y);
Tx lam[1] = {(x*y)};
}
void FooBarFunc () {
......
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