From 5faf03ae77a43db0e5a685a01eb5b4023b09638f Mon Sep 17 00:00:00 2001 From: Mark Mitchell Date: Fri, 29 Oct 1999 09:49:23 +0000 Subject: except.c (free_eh_nesting_info): Free the info itself. * except.c (free_eh_nesting_info): Free the info itself. * function.c (free_after_compilation): Don't free NULL. * gcse.c (alloc_pre_mem): Free the temp_bitmap, too. (pre_edge_insert): Free inserted. * stmt.c (free_stmt_status): Don't free NULL. From-SVN: r30255 --- gcc/function.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gcc/function.c') diff --git a/gcc/function.c b/gcc/function.c index 890f62b..d5cdc26 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -426,7 +426,8 @@ free_after_compilation (f) if (free_machine_status) (*free_machine_status) (f); - free (f->x_parm_reg_stack_loc); + if (f->x_parm_reg_stack_loc) + free (f->x_parm_reg_stack_loc); f->arg_offset_rtx = NULL; f->return_rtx = NULL; -- cgit v1.1