From: J"orn Rennecke Date: Fri, 21 Jan 2005 12:41:44 +0000 (+0000) Subject: passes.c (rest_of_handle_flow2): Close / open the flow2 dump file around the call... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5b5e3a31b95b9fde0993d897de58c2471a0d888a;p=gcc.git passes.c (rest_of_handle_flow2): Close / open the flow2 dump file around the call to... * passes.c (rest_of_handle_flow2): Close / open the flow2 dump file around the call to rest_of_handle_branch_target_load_optimize. From-SVN: r94015 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1ce38f5264a..e841f8cfc42 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-01-21 J"orn Rennecke + + * passes.c (rest_of_handle_flow2): Close / open the flow2 dump file + around the call to rest_of_handle_branch_target_load_optimize. + 2005-01-21 Eric Botcazou * config.gcc (sparc-*-netbsdelf*): Include dbxelf.h diff --git a/gcc/passes.c b/gcc/passes.c index 10044a29244..3d4c6792885 100644 --- a/gcc/passes.c +++ b/gcc/passes.c @@ -1306,7 +1306,11 @@ rest_of_handle_flow2 (void) split_all_insns (0); if (flag_branch_target_load_optimize) - rest_of_handle_branch_target_load_optimize (); + { + close_dump_file (DFI_flow2, print_rtl_with_bb, get_insns ()); + rest_of_handle_branch_target_load_optimize (); + open_dump_file (DFI_flow2, current_function_decl); + } if (optimize) cleanup_cfg (CLEANUP_EXPENSIVE);