Commit 55f01229 by Richard Guenther Committed by Richard Biener

ipa-inline-transform.c (inline_transform): Fix previous change.

2011-06-21  Richard Guenther  <rguenther@suse.de>

	* ipa-inline-transform.c (inline_transform): Fix previous
	change.

From-SVN: r175256
parent 5181cd6a
2011-06-21 Richard Guenther <rguenther@suse.de>
* ipa-inline-transform.c (inline_transform): Fix previous
change.
2011-06-21 Ira Rosen <ira.rosen@linaro.org>
PR tree-optimization/49478
......
......@@ -364,13 +364,13 @@ inline_transform (struct cgraph_node *node)
timevar_push (TV_INTEGRATION);
if (node->callees)
{
todo = optimize_inline_calls (current_function_decl);
/* Redirecting edges might lead to a need for vops to be recomputed. */
todo |= TODO_update_ssa_only_virtuals;
}
todo = optimize_inline_calls (current_function_decl);
timevar_pop (TV_INTEGRATION);
if (!(todo & TODO_update_ssa_any))
/* Redirecting edges might lead to a need for vops to be recomputed. */
todo |= TODO_update_ssa_only_virtuals;
cfun->always_inline_functions_inlined = true;
cfun->after_inlining = true;
return todo | execute_fixup_cfg ();
......
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