From 1ea463a273df44816d63c3f96292341668a88ef0 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Thu, 1 Jul 2004 01:00:47 -0700 Subject: function.h (struct function): Remove dont_emit_block_notes. * function.h (struct function): Remove dont_emit_block_notes. * gimple-low.c (lower_function_body): Don't set it. * cfgexpand.c (expand_block): Don't check it. * cfglayout.c (insn_locators_initialize): Likewise. * expr.c (expand_expr_real, expand_expr_real_1): Likewise. * passes.c (rest_of_compilation): Likewise. * stmt.c (expand_start_bindings_and_block): Likewise. (expand_end_bindings): Likewise. From-SVN: r83959 --- gcc/passes.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'gcc/passes.c') diff --git a/gcc/passes.c b/gcc/passes.c index 8ed0f30..df1c5bd 100644 --- a/gcc/passes.c +++ b/gcc/passes.c @@ -1374,14 +1374,7 @@ rest_of_compilation (void) have been run to re-initialize it. */ cse_not_expected = ! optimize; - if (!cfun->dont_emit_block_notes) - { - /* In function-at-a-time mode, we do not attempt to keep the BLOCK - tree in sensible shape. So, we just recalculate it here. */ - reorder_blocks (); - } - else - finalize_block_changes (); + finalize_block_changes (); /* Dump the rtl code if we are dumping rtl. */ if (open_dump_file (DFI_rtl, current_function_decl)) @@ -1413,8 +1406,6 @@ rest_of_compilation (void) over the instruction sequence faster, and allow the garbage collector to reclaim the memory used by the notes. */ remove_unnecessary_notes (); - if (!cfun->dont_emit_block_notes) - reorder_blocks (); ggc_collect (); -- cgit v1.1