aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2022-12-12 17:41:39 -0500
committerJason Merrill <jason@redhat.com>2022-12-12 17:46:31 -0500
commit77ebee2bd04cc727161875869b135675d035c66e (patch)
tree7abd8ff1494cc73bad0fc71d7622f8804ac2eda1 /gcc/cp
parent11c72cd3c8b06f057ce16c95966331ded692fd4e (diff)
downloadgcc-77ebee2bd04cc727161875869b135675d035c66e.zip
gcc-77ebee2bd04cc727161875869b135675d035c66e.tar.gz
gcc-77ebee2bd04cc727161875869b135675d035c66e.tar.bz2
Revert "c++: build initializer_list<string> in a loop [PR105838]"
This patch broke a couple of different patterns; reverting while I work on a fix. PR c++/108701 This reverts commit bd0485f20f4794f9787237706a6308473a8e9415.
Diffstat (limited to 'gcc/cp')
-rw-r--r--gcc/cp/call.cc11
-rw-r--r--gcc/cp/constexpr.cc6
-rw-r--r--gcc/cp/init.cc13
-rw-r--r--gcc/cp/tree.cc2
4 files changed, 8 insertions, 24 deletions
diff --git a/gcc/cp/call.cc b/gcc/cp/call.cc
index 14aa96d..33b5e7f8 100644
--- a/gcc/cp/call.cc
+++ b/gcc/cp/call.cc
@@ -8501,16 +8501,7 @@ convert_like_internal (conversion *convs, tree expr, tree fn, int argnum,
unsigned len = CONSTRUCTOR_NELTS (expr);
tree array;
- if (tree init = maybe_init_list_as_array (elttype, expr))
- {
- elttype = cp_build_qualified_type
- (elttype, cp_type_quals (elttype) | TYPE_QUAL_CONST);
- array = build_array_of_n_type (elttype, len);
- array = build_vec_init_expr (array, init, complain);
- array = get_target_expr (array);
- array = cp_build_addr_expr (array, complain);
- }
- else if (len)
+ if (len)
{
tree val; unsigned ix;
diff --git a/gcc/cp/constexpr.cc b/gcc/cp/constexpr.cc
index 3f7892a..e43d928 100644
--- a/gcc/cp/constexpr.cc
+++ b/gcc/cp/constexpr.cc
@@ -5255,12 +5255,12 @@ cxx_eval_vec_init_1 (const constexpr_ctx *ctx, tree atype, tree init,
else
{
/* Copying an element. */
+ gcc_assert (same_type_ignoring_top_level_qualifiers_p
+ (atype, TREE_TYPE (init)));
eltinit = cp_build_array_ref (input_location, init, idx, complain);
if (!lvalue_p (init))
eltinit = move (eltinit);
- eltinit = (perform_implicit_conversion_flags
- (elttype, eltinit, complain,
- LOOKUP_IMPLICIT|LOOKUP_NO_NARROWING));
+ eltinit = force_rvalue (eltinit, complain);
eltinit = cxx_eval_constant_expression (&new_ctx, eltinit, lval,
non_constant_p, overflow_p);
}
diff --git a/gcc/cp/init.cc b/gcc/cp/init.cc
index 1ccde7c..428fac5 100644
--- a/gcc/cp/init.cc
+++ b/gcc/cp/init.cc
@@ -4420,9 +4420,7 @@ build_vec_init (tree base, tree maxindex, tree init,
/* Look through the TARGET_EXPR around a compound literal. */
if (init && TREE_CODE (init) == TARGET_EXPR
&& TREE_CODE (TARGET_EXPR_INITIAL (init)) == CONSTRUCTOR
- && from_array != 2
- && (same_type_ignoring_top_level_qualifiers_p
- (TREE_TYPE (init), atype)))
+ && from_array != 2)
init = TARGET_EXPR_INITIAL (init);
if (tree vi = get_vec_init_expr (init))
@@ -4548,14 +4546,7 @@ build_vec_init (tree base, tree maxindex, tree init,
{
if (lvalue_kind (init) & clk_rvalueref)
xvalue = true;
- if (TREE_CODE (init) == TARGET_EXPR)
- {
- /* Avoid error in decay_conversion. */
- base2 = decay_conversion (TARGET_EXPR_SLOT (init), complain);
- base2 = cp_build_compound_expr (init, base2, tf_none);
- }
- else
- base2 = decay_conversion (init, complain);
+ base2 = decay_conversion (init, complain);
if (base2 == error_mark_node)
return error_mark_node;
itype = TREE_TYPE (base2);
diff --git a/gcc/cp/tree.cc b/gcc/cp/tree.cc
index a600178..33bde16 100644
--- a/gcc/cp/tree.cc
+++ b/gcc/cp/tree.cc
@@ -785,6 +785,8 @@ build_vec_init_elt (tree type, tree init, tsubst_flags_t complain)
releasing_vec argvec;
if (init && !BRACE_ENCLOSED_INITIALIZER_P (init))
{
+ gcc_assert (same_type_ignoring_top_level_qualifiers_p
+ (type, TREE_TYPE (init)));
tree init_type = strip_array_types (TREE_TYPE (init));
tree dummy = build_dummy_object (init_type);
if (!lvalue_p (init))