From: Richard Guenther Date: Tue, 21 Jun 2011 11:13:08 +0000 (+0000) Subject: ipa-inline-transform.c (inline_transform): Fix typo. X-Git-Tag: releases/gcc-4.7.0~5868 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e4ee3d702b745dfc7890e80be4bf8ad02134e3bb;p=thirdparty%2Fgcc.git ipa-inline-transform.c (inline_transform): Fix typo. 2011-06-21 Richard Guenther * ipa-inline-transform.c (inline_transform): Fix typo. From-SVN: r175253 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4ec260347d87..5bd5fb96b149 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2011-06-21 Richard Guenther + + * ipa-inline-transform.c (inline_transform): Fix typo. + 2011-06-21 Richard Guenther PR tree-optimization/49483 diff --git a/gcc/ipa-inline-transform.c b/gcc/ipa-inline-transform.c index 39c0138956ed..02d3e6507ad7 100644 --- a/gcc/ipa-inline-transform.c +++ b/gcc/ipa-inline-transform.c @@ -365,9 +365,9 @@ 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);