Commit 57228a69 by Jan Hubicka Committed by Jan Hubicka

* ipa.c (symtab_remove_unreachable_nodes): Fix marking of clones.

From-SVN: r187381
parent 5a3c9cf2
2012-05-10 Jan Hubicka <jh@suse.cz>
* ipa.c (symtab_remove_unreachable_nodes): Fix marking of clones.
2012-05-10 Jan Hubicka <jh@suse.cz>
* cgraph.h (cgraph_remove_unreachable_nodes): Rename to ...
(symtab_remove_unreachable_nodes): ... this one.
* ipa-cp.c (ipcp_driver): Do not remove unreachable nodes.
......
......@@ -310,12 +310,12 @@ symtab_remove_unreachable_nodes (bool before_inlining_p, FILE *file)
/* For non-inline clones, force their origins to the boundary and ensure
that body is not removed. */
while (cnode->clone_of && !cnode->clone_of->symbol.aux
while (cnode->clone_of
&& !gimple_has_body_p (cnode->symbol.decl))
{
bool noninline = cnode->clone_of->symbol.decl != cnode->symbol.decl;
cnode = cnode->clone_of;
if (noninline && !cnode->symbol.aux)
if (noninline)
{
pointer_set_insert (body_needed_for_clonning, cnode->symbol.decl);
enqueue_node ((symtab_node)cnode, &first, reachable);
......
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