diff options
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/toplev.c | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 18f76d4..cfd6bdd 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-01-02 John David Anglin <dave@hiauly1.hia.nrc.ca> + + * toplev.c (rest_of_compilation): Don't print basic block information + when CFG isn't up to date. + 2001-01-02 Mark Elbrecht <snowball3@bigfoot.com> * config/i386/djgpp.h (DWARF2_DEBUGGING_INFO): Define. diff --git a/gcc/toplev.c b/gcc/toplev.c index 4f38dc1..9e10186 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 (); |
