toplev.c (rest_of_compilation): Don't print basic block information when CFG isn...
authorJohn David Anglin <dave@hiauly1.hia.nrc.ca>
Wed, 3 Jan 2001 05:42:23 +0000 (05:42 +0000)
committerJeff Law <law@gcc.gnu.org>
Wed, 3 Jan 2001 05:42:23 +0000 (22:42 -0700)
* toplev.c (rest_of_compilation): Don't print basic block information
when CFG isn't up to date.

From-SVN: r38647

gcc/ChangeLog
gcc/toplev.c

index 18f76d4a318a1afa88feb113e67bd411e2a9f9da..cfd6bddc024cce28ccc41ab9718735b07654eeb4 100644 (file)
@@ -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.
index 4f38dc1f432e93f3d8e7be1b048cc63b4c5bdacb..9e101860d8aed4f0e15454d5bbc5bfe85c63bd15 100644 (file)
@@ -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 ();