Commit f2aeb744 by Jan Hubicka Committed by Jan Hubicka

ipa-inline.c (inline_small_functions): Always update all calles after inlining.

	* ipa-inline.c (inline_small_functions): Always update all calles after
	inlining.

From-SVN: r180249
parent 51973b1e
2011-10-19 Jan Hubicka <jh@suse.cz>
* ipa-inline.c (inline_small_functions): Always update all calles after
inlining.
2011-10-19 Jan Hubicka <jh@suse.cz>
PR bootstrap/50709
* ipa-inline.c (inline_small_functions): Fix checking code to not make
effect on fibheap stability.
......@@ -1515,8 +1515,13 @@ inline_small_functions (void)
/* We inlined last offline copy to the body. This might lead
to callees of function having fewer call sites and thus they
may need updating. */
if (callee->global.inlined_to)
may need updating.
FIXME: the callee size could also shrink because more information
is propagated from caller. We don't track when this happen and
thus we need to recompute everything all the time. Once this is
solved, "|| 1" should go away. */
if (callee->global.inlined_to || 1)
update_all_callee_keys (heap, callee, updated_nodes);
else
update_callee_keys (heap, edge->callee, updated_nodes);
......
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