diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-05-31 22:01:55 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-05-31 22:01:55 +0000 |
commit | a334f1cdd41c64c1089d2b84ee02fa764bb693b4 (patch) | |
tree | 64ab35594fe2887ea9821a5b31c95ffdf0994c49 /gcc/integrate.c | |
parent | 4eb91f6fd217b74905176ab79b1ff07e45fd3ae6 (diff) | |
download | gcc-a334f1cdd41c64c1089d2b84ee02fa764bb693b4.tar.gz |
(output_inline_function): Don't call expand_function_end.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9852 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/integrate.c')
-rw-r--r-- | gcc/integrate.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gcc/integrate.c b/gcc/integrate.c index b15c3a0bb7d..ff2974610ae 100644 --- a/gcc/integrate.c +++ b/gcc/integrate.c @@ -3037,10 +3037,9 @@ output_inline_function (fndecl) current_function_outgoing_args_size = OUTGOING_ARGS_SIZE (head); current_function_pops_args = POPS_ARGS (head); - /* There is no need to output a return label again. */ - return_label = 0; - - expand_function_end (DECL_SOURCE_FILE (fndecl), DECL_SOURCE_LINE (fndecl), 0); + /* This is the only thing the expand_function_end call that uses to be here + actually does and that call can cause problems. */ + immediate_size_expand--; /* Find last insn and rebuild the constant pool. */ for (last = FIRST_PARM_INSN (head); |