From 28250d98faa244ae11d03a099ee17f109b6bd70a Mon Sep 17 00:00:00 2001 From: jason Date: Wed, 26 Apr 2000 07:22:10 +0000 Subject: * 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 --- gcc/integrate.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc/integrate.c') 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; -- cgit v1.2.1