Commit b7884852 by Jan Hubicka Committed by Jan Hubicka

ipa-inline.c (cgraph_decide_inlining_of_small_function): Fix typo in last commit.


	* ipa-inline.c (cgraph_decide_inlining_of_small_function): Fix typo
	in last commit.

From-SVN: r132854
parent c262f705
2008-03-04 Jan Hubicka <jh@suse.cz>
PR c++/35262
* ipa-inline.c (cgraph_decide_inlining_of_small_function): Fix typo
in last commit.
2008-03-04 Danny Smith <dannysmith@users.sourceforge.net>
* gthr-win32.h [__GTHREAD_HIDE_WIN32API]
......
......@@ -925,7 +925,7 @@ cgraph_decide_inlining_of_small_functions (void)
not_good = N_("function not declared inline and code size would grow");
if (optimize_size)
not_good = N_("optimizing for size and code size would grow");
if (not_good && growth > 0 && cgraph_estimate_growth (edge->callee))
if (not_good && growth > 0 && cgraph_estimate_growth (edge->callee) > 0)
{
if (!cgraph_recursive_inlining_p (edge->caller, edge->callee,
&edge->inline_failed))
......
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