[PATCH] Remove redundant dump of reg life info

Andreas Krebbel krebbel1@de.ibm.com
Wed Oct 13 09:48:00 GMT 2004


Hi,

the patch in:
http://gcc.gnu.org/ml/gcc-patches/2004-08/msg00268.html

added redundant output of register life info. 
The attached patch removes it.

An obvious change I think.

OK?

-Andreas-


2004-10-13  Andreas Krebbel  <krebbel1@de.ibm.com>

 * gcc/cfg.c (dump_flow_info): Remove redundant dump of reg life info.


Index: gcc/cfg.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cfg.c,v
retrieving revision 1.69
diff -p -c -r1.69 cfg.c
*** gcc/cfg.c 28 Sep 2004 07:59:42 -0000 1.69
--- gcc/cfg.c 13 Oct 2004 08:09:01 -0000
*************** dump_flow_info (FILE *file)
*** 620,633 ****
        FOR_EACH_EDGE (e, ei, bb->succs)
   dump_edge_info (file, e, 1);
  
-       fprintf (file, "\nRegisters live at start:");
-       dump_regset (bb->global_live_at_start, file);
- 
-       fprintf (file, "\nRegisters live at end:");
-       dump_regset (bb->global_live_at_end, file);
-   
-       putc ('\n', file);
- 
        if (bb->global_live_at_start)
   {
     fprintf (file, "\nRegisters live at start:");
--- 620,625 ----



More information about the Gcc-patches mailing list