From: Jason Merrill Date: Fri, 23 Jan 2015 16:29:46 +0000 (-0500) Subject: re PR c++/64701 (internal compiler error: unexpected expression ‘’ of... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c6e7c499a3f6dfd86b8b88cb1bdd70a1ebb76012;p=gcc.git re PR c++/64701 (internal compiler error: unexpected expression ‘’ of kind do_stmt) PR c++/64701 * constexpr.c (maybe_constant_value): Just hand back STATEMENT_LIST. From-SVN: r220046 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index b1d4965cc39..98bbcbd5a07 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,5 +1,8 @@ 2015-01-23 Jason Merrill + PR c++/64701 + * constexpr.c (maybe_constant_value): Just hand back STATEMENT_LIST. + PR c++/64727 * constexpr.c (cxx_eval_constant_expression): Allow for lvalue use of CONST_DECL. diff --git a/gcc/cp/constexpr.c b/gcc/cp/constexpr.c index f144ab01d24..f1434207520 100644 --- a/gcc/cp/constexpr.c +++ b/gcc/cp/constexpr.c @@ -3454,8 +3454,18 @@ cxx_eval_constant_expression (const constexpr_ctx *ctx, tree t, break; default: - internal_error ("unexpected expression %qE of kind %s", t, - get_tree_code_name (TREE_CODE (t))); + if (STATEMENT_CODE_P (TREE_CODE (t))) + { + /* This function doesn't know how to deal with pre-genericize + statements; this can only happen with statement-expressions, + so for now just fail. */ + if (!ctx->quiet) + error_at (EXPR_LOCATION (t), + "statement is not a constant-expression"); + } + else + internal_error ("unexpected expression %qE of kind %s", t, + get_tree_code_name (TREE_CODE (t))); *non_constant_p = true; break; } diff --git a/gcc/testsuite/g++.dg/ext/stmtexpr17.C b/gcc/testsuite/g++.dg/ext/stmtexpr17.C new file mode 100644 index 00000000000..c1640e4fd25 --- /dev/null +++ b/gcc/testsuite/g++.dg/ext/stmtexpr17.C @@ -0,0 +1,9 @@ +// PR c++/64701 +// { dg-options "" } + +enum { A }; +void +foo () +{ + int x = ({ do {} while (0); A; }); +}