* cp-tree.h (cp_fully_fold_init): Declare.
* cp-gimplify.c (cp_fully_fold_init): New function.
* typeck2.c (split_nonconstant_init, store_init_value): Use it
instead of cp_fully_fold.
From-SVN: r267305
+2018-12-20 Jakub Jelinek <jakub@redhat.com>
+
+ * cp-tree.h (cp_fully_fold_init): Declare.
+ * cp-gimplify.c (cp_fully_fold_init): New function.
+ * typeck2.c (split_nonconstant_init, store_init_value): Use it
+ instead of cp_fully_fold.
+
2018-12-19 Segher Boessenkool <segher@kernel.crashing.org>
* parser.c (cp_parser_asm_definition): Do not allow any asm qualifiers
return cp_fold_rvalue (x);
}
+/* Likewise, but also fold recursively, which cp_fully_fold doesn't perform
+ in some cases. */
+
+tree
+cp_fully_fold_init (tree x)
+{
+ if (processing_template_decl)
+ return x;
+ x = cp_fully_fold (x);
+ hash_set<tree> pset;
+ cp_walk_tree (&x, cp_fold_r, &pset, NULL);
+ return x;
+}
+
/* c-common interface to cp_fold. If IN_INIT, this is in a static initializer
and certain changes are made to the folding done. Or should be (FIXME). We
never touch maybe_const, as it is only used for the C front-end
extern bool cxx_omp_disregard_value_expr (tree, bool);
extern void cp_fold_function (tree);
extern tree cp_fully_fold (tree);
+extern tree cp_fully_fold_init (tree);
extern void clear_fold_cache (void);
extern tree lookup_hotness_attribute (tree);
extern tree process_stmt_hotness_attribute (tree);
init = TARGET_EXPR_INITIAL (init);
if (TREE_CODE (init) == CONSTRUCTOR)
{
- init = cp_fully_fold (init);
+ init = cp_fully_fold_init (init);
code = push_stmt_list ();
if (split_nonconstant_init_1 (dest, init))
init = NULL_TREE;
if (!const_init)
value = oldval;
}
- value = cp_fully_fold (value);
+ value = cp_fully_fold_init (value);
/* Handle aggregate NSDMI in non-constant initializers, too. */
value = replace_placeholders (value, decl);