From 0a8a198ceb46752b7b7e8f3f7b259347e4ba45b6 Mon Sep 17 00:00:00 2001 From: Mark Mitchell Date: Thu, 9 Sep 1999 18:55:37 +0000 Subject: function.h (free_after_compilation): Remove decl parameter. * function.h (free_after_compilation): Remove decl parameter. (free_varasm_status0: Likewise. (free_emit_status): Likewise. (free_stmt_status): Likewise. (free_after_compilation): Likewise. (init_lang_status): New variable. (free_lang_status): Likewise. * emit-rtl.c (free_emit_status): Make decl parameter implicit. * function.c (init_lang_status): New variable. (free_lang_status): Likewise. (push_function_context_to): Don't set function::decl here. (free_after_copmilation): Make decl parameter implicit. Call free_lang_status if defined. (prepare_function_start): Call init_lang_status if defined. (init_function_start): Set function::decl here. * profile.c (output_func_start_profiler): Don't call pushdecl until we've actually started the function. * stmt.c (free_stmt_status): Make decl parameter implicit. * toplev.c (rest_of_compilation): Don't pass decl to free_after_compilation. * varasm.c (free_varasm_status): Likewise. From-SVN: r29239 --- gcc/emit-rtl.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'gcc/emit-rtl.c') diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index 9837b68..e7150c2 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -1609,15 +1609,13 @@ restore_emit_status (p) /* Clear out all parts of the state in F that can safely be discarded after the function has been compiled, to let garbage collection - reclaim the memory. D is the declaration for the function just - compiled. Its output may have been deferred. */ + reclaim the memory. */ void -free_emit_status (f, d) +free_emit_status (f) struct function *f; - tree d; { - if (DECL_DEFER_OUTPUT (d)) + if (DECL_DEFER_OUTPUT (f->decl)) return; free (f->emit->x_regno_reg_rtx); -- cgit v1.1