On Fri, Sep 30, 2022 at 04:39:25PM -0400, Jason Merrill wrote:
> > --- gcc/cp/decl.cc.jj 2022-09-22 00:14:55.
478599363 +0200
> > +++ gcc/cp/decl.cc 2022-09-22 00:24:01.
121178256 +0200
> > @@ -223,6 +223,7 @@ struct GTY((for_user)) named_label_entry
> > bool in_transaction_scope;
> > bool in_constexpr_if;
> > bool in_consteval_if;
> > + bool in_assume;
>
> I think it would be better to reject jumps into statement-expressions like
> the C front-end.
Ok, here is a self-contained patch that does that.
2022-10-03 Jakub Jelinek <jakub@redhat.com>
* cp-tree.h (BCS_STMT_EXPR): New enumerator.
* name-lookup.h (enum scope_kind): Add sk_stmt_expr.
* name-lookup.cc (begin_scope): Handle sk_stmt_expr like sk_block.
* semantics.cc (begin_compound_stmt): For BCS_STMT_EXPR use
sk_stmt_expr.
* parser.cc (cp_parser_statement_expr): Use BCS_STMT_EXPR instead of
BCS_NORMAL.
* decl.cc (struct named_label_entry): Add in_stmt_expr.
(poplevel_named_label_1): Handle sk_stmt_expr.
(check_previous_goto_1): Diagnose entering of statement expression.
(check_goto): Likewise.
* g++.dg/ext/stmtexpr24.C: New test.
BCS_NO_SCOPE = 1,
BCS_TRY_BLOCK = 2,
BCS_FN_BODY = 4,
- BCS_TRANSACTION = 8
+ BCS_TRANSACTION = 8,
+ BCS_STMT_EXPR = 16
};
extern tree begin_compound_stmt (unsigned int);
bool in_transaction_scope;
bool in_constexpr_if;
bool in_consteval_if;
+ bool in_stmt_expr;
};
#define named_labels cp_function_chain->x_named_labels
case sk_transaction:
ent->in_transaction_scope = true;
break;
+ case sk_stmt_expr:
+ ent->in_stmt_expr = true;
+ break;
case sk_block:
if (level_for_constexpr_if (bl->level_chain))
ent->in_constexpr_if = true;
bool complained = false;
int identified = 0;
bool saw_eh = false, saw_omp = false, saw_tm = false, saw_cxif = false;
- bool saw_ceif = false;
+ bool saw_ceif = false, saw_se = false;
if (exited_omp)
{
saw_tm = true;
break;
+ case sk_stmt_expr:
+ if (!saw_se)
+ inf = G_(" enters statement expression");
+ saw_se = true;
+ break;
+
case sk_block:
if (!saw_cxif && level_for_constexpr_if (b->level_chain))
{
if (ent->in_try_scope || ent->in_catch_scope || ent->in_transaction_scope
|| ent->in_constexpr_if || ent->in_consteval_if
- || ent->in_omp_scope || !vec_safe_is_empty (ent->bad_decls))
+ || ent->in_omp_scope || ent->in_stmt_expr
+ || !vec_safe_is_empty (ent->bad_decls))
{
diagnostic_t diag_kind = DK_PERMERROR;
if (ent->in_try_scope || ent->in_catch_scope || ent->in_constexpr_if
|| ent->in_consteval_if || ent->in_transaction_scope
- || ent->in_omp_scope)
+ || ent->in_omp_scope || ent->in_stmt_expr)
diag_kind = DK_ERROR;
complained = identify_goto (decl, DECL_SOURCE_LOCATION (decl),
&input_location, diag_kind);
inform (input_location, " enters %<constexpr if%> statement");
else if (ent->in_consteval_if)
inform (input_location, " enters %<consteval if%> statement");
+ else if (ent->in_stmt_expr)
+ inform (input_location, " enters statement expression");
}
if (ent->in_omp_scope)
case sk_scoped_enum:
case sk_transaction:
case sk_omp:
+ case sk_stmt_expr:
scope->keep = keep_next_level_flag;
break;
init-statement. */
sk_cond, /* The scope of the variable declared in the condition
of an if or switch statement. */
+ sk_stmt_expr, /* GNU statement expression block. */
sk_function_parms, /* The scope containing function parameters. */
sk_class, /* The scope containing the members of a class. */
sk_scoped_enum, /* The scope containing the enumerators of a C++11
/* Start the statement-expression. */
tree expr = begin_stmt_expr ();
/* Parse the compound-statement. */
- cp_parser_compound_statement (parser, expr, BCS_NORMAL, false);
+ cp_parser_compound_statement (parser, expr, BCS_STMT_EXPR, false);
/* Finish up. */
expr = finish_stmt_expr (expr, false);
/* Consume the ')'. */
sk = sk_try;
else if (flags & BCS_TRANSACTION)
sk = sk_transaction;
+ else if (flags & BCS_STMT_EXPR)
+ sk = sk_stmt_expr;
r = do_pushlevel (sk);
}
--- /dev/null
+// { dg-do compile }
+// { dg-options "" }
+
+void
+foo (int x)
+{
+ bool a = false;
+ if (x == 1)
+ goto l1; // { dg-message "from here" }
+ a = ({ l0:; if (x == 0) goto l0; true; });
+ a = ({ if (x == 0) throw 1; true; });
+ a = ({ l1:; true; }); // { dg-error "jump to label 'l1'" }
+ // { dg-message "enters statement expression" "" { target *-*-* } .-1 }
+ a = ({ l2:; true; }); // { dg-error "jump to label 'l2'" }
+ switch (x)
+ {
+ case 2:
+ a = ({ case 3:; true; }); // { dg-error "jump to case label" }
+ // { dg-message "enters statement expression" "" { target *-*-* } .-1 }
+ a = ({ default:; true; }); // { dg-error "jump to case label" }
+ // { dg-message "enters statement expression" "" { target *-*-* } .-1 }
+ break;
+ }
+ if (x == 4)
+ goto l2; // { dg-message "from here" }
+ // { dg-message "enters statement expression" "" { target *-*-* } .-1 }
+}