Commit f0d9b836 by Jason Merrill Committed by Jason Merrill

call.c (reference_related_p): Check for error_mark_node.

	* call.c (reference_related_p): Check for error_mark_node.
	(add_function_candidate): Check it instead of
	same_type_ignoring_top_level_qualifiers_p.

From-SVN: r163382
parent 95d7bdaa
2010-08-19 Jason Merrill <jason@redhat.com> 2010-08-19 Jason Merrill <jason@redhat.com>
* call.c (reference_related_p): Check for error_mark_node.
(add_function_candidate): Check it instead of
same_type_ignoring_top_level_qualifiers_p.
PR c++/45315 PR c++/45315
* init.c (build_new_1): Don't use build_value_init in a template. * init.c (build_new_1): Don't use build_value_init in a template.
(build_value_init): Make sure we don't. (build_value_init): Make sure we don't.
......
...@@ -999,6 +999,9 @@ standard_conversion (tree to, tree from, tree expr, bool c_cast_p, ...@@ -999,6 +999,9 @@ standard_conversion (tree to, tree from, tree expr, bool c_cast_p,
bool bool
reference_related_p (tree t1, tree t2) reference_related_p (tree t1, tree t2)
{ {
if (t1 == error_mark_node || t2 == error_mark_node)
return false;
t1 = TYPE_MAIN_VARIANT (t1); t1 = TYPE_MAIN_VARIANT (t1);
t2 = TYPE_MAIN_VARIANT (t2); t2 = TYPE_MAIN_VARIANT (t2);
...@@ -1598,8 +1601,10 @@ add_function_candidate (struct z_candidate **candidates, ...@@ -1598,8 +1601,10 @@ add_function_candidate (struct z_candidate **candidates,
/* Kludge: When looking for a function from a subobject while generating /* Kludge: When looking for a function from a subobject while generating
an implicit copy/move constructor/operator=, don't consider anything an implicit copy/move constructor/operator=, don't consider anything
that takes (a reference to) a different type. See c++/44909. */ that takes (a reference to) an unrelated type. See c++/44909. */
else if (flags & LOOKUP_SPECULATIVE) else if ((flags & LOOKUP_SPECULATIVE)
|| (current_function_decl
&& DECL_DEFAULTED_FN (current_function_decl)))
{ {
if (DECL_CONSTRUCTOR_P (fn)) if (DECL_CONSTRUCTOR_P (fn))
i = 1; i = 1;
...@@ -1611,8 +1616,8 @@ add_function_candidate (struct z_candidate **candidates, ...@@ -1611,8 +1616,8 @@ add_function_candidate (struct z_candidate **candidates,
if (i && len == i) if (i && len == i)
{ {
parmnode = chain_index (i-1, parmlist); parmnode = chain_index (i-1, parmlist);
if (!(same_type_ignoring_top_level_qualifiers_p if (!reference_related_p (non_reference (TREE_VALUE (parmnode)),
(non_reference (TREE_VALUE (parmnode)), ctype))) ctype))
viable = 0; viable = 0;
} }
} }
......
2010-08-19 Jason Merrill <jason@redhat.com> 2010-08-19 Jason Merrill <jason@redhat.com>
* g++.dg/init/synth3.C: New.
* g++.dg/init/value8.C: New. * g++.dg/init/value8.C: New.
* g++.dg/tree-ssa/empty-2.C: New. * g++.dg/tree-ssa/empty-2.C: New.
......
// Test that synthesizing the C copy constructor doesn't require B<int> to
// be complete.
template <class T>
struct B
{
typename T::NT nt;
};
struct A
{
A ();
A (const A&);
A (const B<int>&);
};
struct C: A { };
C c;
C c2(c);
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