From: Martin Liska Date: Fri, 12 Mar 2021 13:32:07 +0000 (+0100) Subject: c++: Use STATIC_ASSERT for OVL_OP_MAX. X-Git-Tag: upstream/12.2.0~8617 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cbca62831cb7c1c7c20d67fcf929f156b09923bf;p=platform%2Fupstream%2Fgcc.git c++: Use STATIC_ASSERT for OVL_OP_MAX. gcc/cp/ChangeLog: * cp-tree.h (STATIC_ASSERT): Prefer static assert. * lex.c (init_operators): Remove run-time check. --- diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index 23a77a2..cb254e0 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -5922,6 +5922,9 @@ enum ovl_op_code { OVL_OP_MAX }; +/* Make sure it fits in lang_decl_fn::ovl_op_code. */ +STATIC_ASSERT (OVL_OP_MAX < (1 << 6)); + struct GTY(()) ovl_op_info_t { /* The IDENTIFIER_NODE for the operator. */ tree identifier; diff --git a/gcc/cp/lex.c b/gcc/cp/lex.c index 73e14b8..43abd01 100644 --- a/gcc/cp/lex.c +++ b/gcc/cp/lex.c @@ -166,8 +166,6 @@ init_operators (void) if (op_ptr->name) { - /* Make sure it fits in lang_decl_fn::operator_code. */ - gcc_checking_assert (op_ptr->ovl_op_code < (1 << 6)); tree ident = set_operator_ident (op_ptr); if (unsigned index = IDENTIFIER_CP_INDEX (ident)) {