Commit 1cf4f698 by Richard Kenner

(expand_call): Test RTX_INTEGRATED_P in DECL_SAVED_INSNS.

From-SVN: r11183
parent 912c4289
......@@ -607,7 +607,8 @@ expand_call (exp, target, ignore)
if (!flag_no_inline
&& fndecl != current_function_decl
&& DECL_INLINE (fndecl)
&& DECL_SAVED_INSNS (fndecl))
&& DECL_SAVED_INSNS (fndecl)
&& RTX_INTEGRATED_P (DECL_SAVED_INSNS (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