Commit c62f4cd9 by Jason Merrill Committed by Jason Merrill

re PR c++/47199 ([C++0x] ICE: expected class 'type', have 'declaration'…

re PR c++/47199 ([C++0x] ICE: expected class 'type', have 'declaration' (function_decl) in same_type_ignoring_top_level_qualifiers_p, at cp/typeck.c:1407 with -fno-elide-constructors)

	PR c++/47199
	* semantics.c (cxx_eval_call_expression): Call
	cxx_eval_constant_expression in trivial shortcut.

From-SVN: r170356
parent a3dbf764
2011-02-20 Jason Merrill <jason@redhat.com>
PR c++/47199
* semantics.c (cxx_eval_call_expression): Call
cxx_eval_constant_expression in trivial shortcut.
PR c++/46831
* call.c (convert_class_to_reference): Don't try to set up a
second conv sequence for non-viable candidates.
......
......@@ -6021,7 +6021,11 @@ cxx_eval_call_expression (const constexpr_call *old_call, tree t,
/* Shortcut trivial copy constructor/op=. */
if (call_expr_nargs (t) == 2 && trivial_fn_p (fun))
return convert_from_reference (get_nth_callarg (t, 1));
{
tree arg = convert_from_reference (get_nth_callarg (t, 1));
return cxx_eval_constant_expression (old_call, arg, allow_non_constant,
addr, non_constant_p);
}
/* If in direct recursive call, optimize definition search. */
if (old_call != NULL && old_call->fundef->decl == fun)
......
2011-02-20 Jason Merrill <jason@redhat.com>
* g++.dg/cpp0x/constexpr-ctor7.C: New.
* g++.dg/cpp0x/fntmpdefarg2.C: New.
* g++.dg/overload/conv-op1.C: New.
......
// PR c++/47199
// { dg-options "-std=c++0x -fno-elide-constructors" }
template < int > struct S
{
constexpr S (int r):rr (r)
{
}
S (const S &) = default;
static constexpr S s ()
{
return -1;
}
int rr;
};
static const int d = S < 0 >::s ().rr;
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