From: Zdenek Dvorak Date: Tue, 28 May 2002 20:44:09 +0000 (+0200) Subject: * cfgloop.c (flow_loops_cfg_dump): Use bb->index, not i. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f8088d5581594d09065f378283999b8cb4270203;p=gcc.git * cfgloop.c (flow_loops_cfg_dump): Use bb->index, not i. From-SVN: r53967 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 54e828f8607..a8900ce2297 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-05-28 Zdenek Dvorak + + * cfgloop.c (flow_loops_cfg_dump): Use bb->index, not i. + 2002-05-28 Richard Henderson * config/i386/i386.c (ix86_compute_frame_layout): Do not add diff --git a/gcc/cfgloop.c b/gcc/cfgloop.c index a2b10dcacbb..aed264172fd 100644 --- a/gcc/cfgloop.c +++ b/gcc/cfgloop.c @@ -62,7 +62,7 @@ flow_loops_cfg_dump (loops, file) fprintf (file, ";; %d succs { ", bb->index); for (succ = bb->succ; succ; succ = succ->succ_next) fprintf (file, "%d ", succ->dest->index); - flow_nodes_print ("} dom", loops->cfg.dom[i], file); + flow_nodes_print ("} dom", loops->cfg.dom[bb->index], file); } /* Dump the DFS node order. */