summaryrefslogtreecommitdiff
path: root/gcc/calls.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1996-02-09 09:11:14 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1996-02-09 09:11:14 -0500
commit1cf4f698fe712c8f1007bcf95003e33cc76ad550 (patch)
tree974bafe5dbc1d84e17c27456ffab3de311c84191 /gcc/calls.c
parent912c4289fdc3c9c02ff1ea6ceaa30661db8638b2 (diff)
downloadgcc-1cf4f698fe712c8f1007bcf95003e33cc76ad550.tar.gz
(expand_call): Test RTX_INTEGRATED_P in DECL_SAVED_INSNS.
From-SVN: r11183
Diffstat (limited to 'gcc/calls.c')
-rw-r--r--gcc/calls.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/calls.c b/gcc/calls.c
index 073a23c2b23..03442793ac8 100644
--- a/gcc/calls.c
+++ b/gcc/calls.c
@@ -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))
{