Commit 694b6b6d by Jeff Law

calls.c (expand_call): Do not set is_integrable if the function is not inlineable according to...

	* calls.c (expand_call): Do not set is_integrable if the
	function is not inlineable according to function_cannot_inline_p.

From-SVN: r8572
parent 56031823
......@@ -599,7 +599,8 @@ expand_call (exp, target, ignore)
{
if (!flag_no_inline
&& fndecl != current_function_decl
&& DECL_SAVED_INSNS (fndecl))
&& DECL_SAVED_INSNS (fndecl)
&& ! function_cannot_inline_p (fndecl))
is_integrable = 1;
else if (! TREE_ADDRESSABLE (fndecl))
{
......
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