(expand_call): Only inline if DECL_INLINE; don't call

function_cannot_inline_p here.

From-SVN: r8681
This commit is contained in:
Richard Kenner 1994-12-21 13:29:35 -05:00
parent b8471b656d
commit aa10adffde
1 changed files with 2 additions and 2 deletions

View File

@ -599,8 +599,8 @@ expand_call (exp, target, ignore)
{
if (!flag_no_inline
&& fndecl != current_function_decl
&& DECL_SAVED_INSNS (fndecl)
&& ! function_cannot_inline_p (fndecl))
&& DECL_INLINE (fndecl)
&& DECL_SAVED_INSNS (fndecl))
is_integrable = 1;
else if (! TREE_ADDRESSABLE (fndecl))
{