mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 23:31:21 +08:00
Add TARGET_EXPR_DIRECT_INIT_P sanity check.
* cp-gimplify.c (cp_gimplify_expr) [TARGET_EXPR]: Check TARGET_EXPR_DIRECT_INIT_P. * constexpr.c (cxx_eval_constant_expression): Likewise. From-SVN: r280019
This commit is contained in:
parent
10d2f801f4
commit
08f594eb39
@ -1,3 +1,9 @@
|
||||
2020-01-08 Jason Merrill <jason@redhat.com>
|
||||
|
||||
* cp-gimplify.c (cp_gimplify_expr) [TARGET_EXPR]: Check
|
||||
TARGET_EXPR_DIRECT_INIT_P.
|
||||
* constexpr.c (cxx_eval_constant_expression): Likewise.
|
||||
|
||||
2020-01-08 Jason Merrill <jason@redhat.com>
|
||||
|
||||
PR c++/91369 - constexpr destructor and member initializer.
|
||||
|
@ -5312,6 +5312,7 @@ cxx_eval_constant_expression (const constexpr_ctx *ctx, tree t,
|
||||
*non_constant_p = true;
|
||||
break;
|
||||
}
|
||||
gcc_checking_assert (!TARGET_EXPR_DIRECT_INIT_P (t));
|
||||
/* Avoid evaluating a TARGET_EXPR more than once. */
|
||||
if (tree *p = ctx->global->values.get (TARGET_EXPR_SLOT (t)))
|
||||
{
|
||||
|
@ -925,6 +925,13 @@ cp_gimplify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
|
||||
}
|
||||
break;
|
||||
|
||||
case TARGET_EXPR:
|
||||
/* A TARGET_EXPR that expresses direct-initialization should have been
|
||||
elided by cp_gimplify_init_expr. */
|
||||
gcc_checking_assert (!TARGET_EXPR_DIRECT_INIT_P (*expr_p));
|
||||
ret = GS_UNHANDLED;
|
||||
break;
|
||||
|
||||
case RETURN_EXPR:
|
||||
if (TREE_OPERAND (*expr_p, 0)
|
||||
&& (TREE_CODE (TREE_OPERAND (*expr_p, 0)) == INIT_EXPR
|
||||
|
Loading…
x
Reference in New Issue
Block a user