summaryrefslogtreecommitdiff
path: root/gcc/integrate.c
diff options
context:
space:
mode:
authorjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>2000-04-26 07:22:10 +0000
committerjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>2000-04-26 07:22:10 +0000
commit28250d98faa244ae11d03a099ee17f109b6bd70a (patch)
tree0bd5f3cf33dbbf6c76e4060f2526c90431a7fd7b /gcc/integrate.c
parenta5abc8838fccb990ee2d181da14bd6b13d702e85 (diff)
downloadgcc-28250d98faa244ae11d03a099ee17f109b6bd70a.tar.gz
* integrate.c (output_inline_function): Do clear DECL_DEFER_OUTPUT
before calling rest_of_compilation. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33441 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/integrate.c')
-rw-r--r--gcc/integrate.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/integrate.c b/gcc/integrate.c
index 622acf49deb..ffecfa44bd8 100644
--- a/gcc/integrate.c
+++ b/gcc/integrate.c
@@ -2737,12 +2737,12 @@ output_inline_function (fndecl)
set_new_last_label_num (f->inl_max_label_num);
- /* Compile this function all the way down to assembly code. */
- rest_of_compilation (fndecl);
-
/* We're not deferring this any longer. */
DECL_DEFER_OUTPUT (fndecl) = 0;
+ /* Compile this function all the way down to assembly code. */
+ rest_of_compilation (fndecl);
+
/* We can't inline this anymore. */
f->inlinable = 0;
DECL_INLINE (fndecl) = 0;