Commit 44cfd8f6 by Jan Hubicka

* ipa-inline.c (cgraph_early_inlining): Collect garbage.

From-SVN: r112753
parent f6fe3a22
......@@ -1159,7 +1159,10 @@ cgraph_early_inlining (void)
if (node->analyzed && node->local.inlinable
&& (node->needed || node->reachable)
&& node->callers)
cgraph_decide_inlining_incrementally (node, true);
{
if (cgraph_decide_inlining_incrementally (node, true))
ggc_collect ();
}
}
cgraph_remove_unreachable_nodes (true, dump_file);
#ifdef ENABLE_CHECKING
......
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