From 232a132fd6cf2bdcc637c241d37ae9f3a763861f Mon Sep 17 00:00:00 2001 From: John David Anglin Date: Wed, 3 Jan 2001 05:42:23 +0000 Subject: [PATCH] toplev.c (rest_of_compilation): Don't print basic block information when CFG isn't up to date. * toplev.c (rest_of_compilation): Don't print basic block information when CFG isn't up to date. From-SVN: r38647 --- gcc/ChangeLog | 5 +++++ gcc/toplev.c | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 18f76d4a318..cfd6bddc024 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-01-02 John David Anglin + + * toplev.c (rest_of_compilation): Don't print basic block information + when CFG isn't up to date. + 2001-01-02 Mark Elbrecht * config/i386/djgpp.h (DWARF2_DEBUGGING_INFO): Define. diff --git a/gcc/toplev.c b/gcc/toplev.c index 4f38dc1f432..9e101860d8a 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -3609,7 +3609,7 @@ rest_of_compilation (decl) /* CFG no longer kept up to date. */ - close_dump_file (DFI_jump2, print_rtl_with_bb, insns); + close_dump_file (DFI_jump2, print_rtl, insns); timevar_pop (TV_JUMP); } @@ -3619,7 +3619,7 @@ rest_of_compilation (decl) MACHINE_DEPENDENT_REORG (insns); - close_dump_file (DFI_mach, print_rtl_with_bb, insns); + close_dump_file (DFI_mach, print_rtl, insns); ggc_collect (); #endif @@ -3635,7 +3635,7 @@ rest_of_compilation (decl) dbr_schedule (insns, rtl_dump_file); - close_dump_file (DFI_dbr, print_rtl_with_bb, insns); + close_dump_file (DFI_dbr, print_rtl, insns); timevar_pop (TV_DBR_SCHED); ggc_collect (); @@ -3656,7 +3656,7 @@ rest_of_compilation (decl) reg_to_stack (insns, rtl_dump_file); - close_dump_file (DFI_stack, print_rtl_with_bb, insns); + close_dump_file (DFI_stack, print_rtl, insns); timevar_pop (TV_REG_STACK); ggc_collect (); -- 2.30.2