Commit 7e1b44bb by Andreas Krebbel Committed by Jan Hubicka

re PR middle-end/24093 (cgraph exhausts virtual memory building 197.parser with -profile-use -O3)

	PR middle-end/24093
	* ipa-inline.c (craph_decide_recursive_inlining): Fix return value.

From-SVN: r106014
parent a9a92716
2005-10-28 Andreas Krebbel <krebbel1@de.ibm.com>
PR middle-end/24093
* ipa-inline.c (craph_decide_recursive_inlining): Fix return value.
2005-10-28 Aldy Hernandez <aldyh@redhat.com> 2005-10-28 Aldy Hernandez <aldyh@redhat.com>
* config/ms1/ms1.h (TARGET_MS1_64_001): New. * config/ms1/ms1.h (TARGET_MS1_64_001): New.
......
...@@ -650,7 +650,7 @@ cgraph_decide_recursive_inlining (struct cgraph_node *node) ...@@ -650,7 +650,7 @@ cgraph_decide_recursive_inlining (struct cgraph_node *node)
function. At this place we should probably walk the function and function. At this place we should probably walk the function and
inline clones and compensate the counts accordingly. This probably inline clones and compensate the counts accordingly. This probably
doesn't matter much in practice. */ doesn't matter much in practice. */
return true; return n > 0;
} }
/* Set inline_failed for all callers of given function to REASON. */ /* Set inline_failed for all callers of given function to REASON. */
......
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