diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-02-09 14:11:14 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-02-09 14:11:14 +0000 |
commit | 4bc2d0e56b94e30ca121aff61513b246940e7e65 (patch) | |
tree | 974bafe5dbc1d84e17c27456ffab3de311c84191 /gcc/calls.c | |
parent | 4ce8751ea382815710b099921efa0d449da352a0 (diff) | |
download | gcc-4bc2d0e56b94e30ca121aff61513b246940e7e65.tar.gz |
(expand_call): Test RTX_INTEGRATED_P in DECL_SAVED_INSNS.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@11183 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/calls.c')
-rw-r--r-- | gcc/calls.c | 3 |
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)) { |