From: Andreas Krebbel Date: Mon, 18 Oct 2004 19:58:01 +0000 (+0000) Subject: cfg.c (dump_flow_info): Remove redundant dump of reg life info. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=320b0f6a1e82aa208cdf6c84453d1a6aa6011000;p=platform%2Fupstream%2Fgcc.git cfg.c (dump_flow_info): Remove redundant dump of reg life info. 2004-10-18 Andreas Krebbel * cfg.c (dump_flow_info): Remove redundant dump of reg life info. From-SVN: r89240 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 089ae2b..956cdc6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-10-18 Andreas Krebbel + + * cfg.c (dump_flow_info): Remove redundant dump of reg life info. + 2004-10-18 Andrew Pinski PR middle-end/15014 diff --git a/gcc/cfg.c b/gcc/cfg.c index 0669bed..ba9e203 100644 --- a/gcc/cfg.c +++ b/gcc/cfg.c @@ -620,14 +620,6 @@ dump_flow_info (FILE *file) 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:");