Commit 58688a4e by Jason Merrill Committed by Jason Merrill

re PR c++/67411 (internal compiler error: in tsubst_copy, at cp/pt.c:13473)

	PR c++/67411
	* decl2.c (decl_maybe_constant_var_p): Use DECL_HAS_VALUE_EXPR_P.

From-SVN: r231869
parent 3057cbb3
2015-12-20 Jason Merrill <jason@redhat.com>
PR c++/67411
* decl2.c (decl_maybe_constant_var_p): Use DECL_HAS_VALUE_EXPR_P.
PR c++/67411
* lambda.c (generic_lambda_fn_p): Split out from...
(maybe_add_lambda_conv_op): ...here.
* semantics.c (process_outer_var_ref): Don't defer maybe-constant
......
......@@ -4222,7 +4222,7 @@ decl_maybe_constant_var_p (tree decl)
return false;
if (DECL_DECLARED_CONSTEXPR_P (decl))
return true;
if (DECL_VALUE_EXPR (decl))
if (DECL_HAS_VALUE_EXPR_P (decl))
/* A proxy isn't constant. */
return false;
return (CP_TYPE_CONST_NON_VOLATILE_P (type)
......
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