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

From-SVN: r112753
This commit is contained in:
Jan Hubicka 2006-04-07 15:24:39 +00:00
parent f6fe3a224f
commit 44cfd8f6d4
1 changed files with 4 additions and 1 deletions

View File

@ -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