Commit ddd6d421 by Jason Merrill Committed by Jason Merrill

re PR c++/70449 (ICE with -Wall on valid code on x86_64-linux-gnu in pp_string,…

re PR c++/70449 (ICE with -Wall on valid code on x86_64-linux-gnu in pp_string, at pretty-print.c:928)

	PR c++/70449

	PR c++/70344
	* pt.c (instantiate_decl): A function isn't fully defined if
	DECL_INITIAL is error_mark_node.
	* constexpr.c (cxx_eval_call_expression): Likewise.

From-SVN: r234695
parent bb727032
2016-04-01 Jason Merrill <jason@redhat.com>
PR c++/70449
PR c++/70344
* pt.c (instantiate_decl): A function isn't fully defined if
DECL_INITIAL is error_mark_node.
* constexpr.c (cxx_eval_call_expression): Likewise.
2016-04-01 Jakub Jelinek <jakub@redhat.com>
Marek Polacek <polacek@redhat.com>
......
......@@ -1239,21 +1239,6 @@ cxx_eval_call_expression (const constexpr_ctx *ctx, tree t,
return t;
}
if (fun == current_function_decl)
{
/* A call to the current function, i.e.
constexpr int f (int i) {
constexpr int j = f(i-1);
return j;
}
This would be OK without the constexpr on the declaration of j. */
if (!ctx->quiet)
error_at (loc, "%qD called in a constant expression before its "
"definition is complete", fun);
*non_constant_p = true;
return t;
}
constexpr_ctx new_ctx = *ctx;
if (DECL_CONSTRUCTOR_P (fun) && !ctx->object
&& TREE_CODE (t) == AGGR_INIT_EXPR)
......@@ -1308,7 +1293,10 @@ cxx_eval_call_expression (const constexpr_ctx *ctx, tree t,
{
if (!ctx->quiet)
{
if (DECL_INITIAL (fun))
if (DECL_INITIAL (fun) == error_mark_node)
error_at (loc, "%qD called in a constant expression before its "
"definition is complete", fun);
else if (DECL_INITIAL (fun))
{
/* The definition of fun was somehow unsuitable. */
error_at (loc, "%qD called in a constant expression", fun);
......
......@@ -21741,7 +21741,8 @@ instantiate_decl (tree d, int defer_ok,
if (TREE_CODE (d) == FUNCTION_DECL)
{
deleted_p = DECL_DELETED_FN (code_pattern);
pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
pattern_defined = ((DECL_SAVED_TREE (code_pattern) != NULL_TREE
&& DECL_INITIAL (code_pattern) != error_mark_node)
|| DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern)
|| deleted_p);
}
......
// PR c++/70449
// { dg-do compile { target c++14 } }
// { dg-options "-Wall" }
template <int N>
constexpr int f1 ()
{
enum E { a = f1<0> () }; // { dg-error "called in a constant expression before its definition is complete|is not an integer constant" }
return 0;
}
constexpr int f3 ()
{
enum E { a = f3 () }; // { dg-error "called in a constant expression before its definition is complete|is not an integer constant" }
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment