------- Comment #2 from rguenth at gcc dot gnu dot org 2006-01-26 11:06 -------
I believe the error is instead that
for (main_clone = cgraph_node (node->decl); main_clone;
main_clone = main_clone->next_clone)
if (main_clone == node)
break;
if (!node)
{
error ("node not found in DECL_ASSEMBLER_NAME hash");
error_found = true;
}
we should check main_clone here instead of node. Checking node makes no
sense here. Honza, can you confirm this?
--
rguenth at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |hubicka at gcc dot gnu dot
| |org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25962