re PR c++/45049 (ICE: tree check: expected tree that contains 'decl minimal' structure, have 'tree_list' in push_overloaded_decl, at cp/name-lookup.c:2160)

gcc/cp/
	PR c++/45049
	* name-lookup.c (push_overloaded_decl): Change DECL_CHAIN to
	TREE_CHAIN.

gcc/testsuite/
	PR c++/45049
	* g++.dg/pr45049-1.C: New test.
	* g++.dg/pr45049-2.C: New test.

From-SVN: r163344
This commit is contained in:
Nathan Froyd 2010-08-18 16:05:40 +00:00 committed by Nathan Froyd
parent 3ff91293eb
commit c043ee4a3a
5 changed files with 40 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2010-08-18 Nathan Froyd <froydnj@codesourcery.com>
PR c++/45049
* name-lookup.c (push_overloaded_decl): Change DECL_CHAIN to
TREE_CHAIN.
2010-08-17 Kai Tietz <kai.tietz@onevision.com>
* class.c (note_name_declared_in_class): Make in 'extern "C"' blocks,

View File

@ -2157,7 +2157,7 @@ push_overloaded_decl (tree decl, int flags, bool is_friend)
for (d = &IDENTIFIER_BINDING (name)->scope->names;
*d;
d = &DECL_CHAIN (*d))
d = &TREE_CHAIN (*d))
if (*d == old
|| (TREE_CODE (*d) == TREE_LIST
&& TREE_VALUE (*d) == old))
@ -2168,7 +2168,7 @@ push_overloaded_decl (tree decl, int flags, bool is_friend)
else
/* Build a TREE_LIST to wrap the OVERLOAD. */
*d = tree_cons (NULL_TREE, new_binding,
DECL_CHAIN (*d));
TREE_CHAIN (*d));
/* And update the cxx_binding node. */
IDENTIFIER_BINDING (name)->value = new_binding;

View File

@ -1,3 +1,9 @@
2010-08-18 Nathan Froyd <froydnj@codesourcery.com>
PR c++/45049
* g++.dg/pr45049-1.C: New test.
* g++.dg/pr45049-2.C: New test.
2010-08-18 Jie Zhang <jie@codesourcery.com>
* gcc.dg/builtin-apply2.c (STACK_ARGUMENTS_SIZE): Define to

View File

@ -0,0 +1,17 @@
/* { dg-do compile } */
namespace n1 {
void modf ();
}
namespace n2 {
void trunc ();
void modf ();
}
void max ()
{
using n1::modf;
using n2::trunc;
using n2::modf;
}

View File

@ -0,0 +1,9 @@
/* { dg-do compile } */
void foo()
{
void bar(int);
void baz(int);
void baz(void);
void bar(void);
}