From: Richard Henderson Date: Wed, 1 May 2002 20:20:19 +0000 (-0700) Subject: cfgcleanup.c (merge_blocks_move_successor_nojumps): Emit dump info before expunging... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2150ad33f212a2213c2c2bbbfd743373d149cb30;p=gcc.git cfgcleanup.c (merge_blocks_move_successor_nojumps): Emit dump info before expunging the block. * cfgcleanup.c (merge_blocks_move_successor_nojumps): Emit dump info before expunging the block. From-SVN: r53014 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0a2d1c5361d..a3733fce42a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-05-01 Richard Henderson + + * cfgcleanup.c (merge_blocks_move_successor_nojumps): Emit dump + info before expunging the block. + 2002-05-01 Jakub Jelinek * cppinit.c (cpp_handle_option) [-dM]: Don't set no_output here... diff --git a/gcc/cfgcleanup.c b/gcc/cfgcleanup.c index 74a2256b5e2..892478111f6 100644 --- a/gcc/cfgcleanup.c +++ b/gcc/cfgcleanup.c @@ -775,12 +775,12 @@ merge_blocks_move_successor_nojumps (a, b) /* Restore the real end of b. */ b->end = real_b_end; - /* Now blocks A and B are contiguous. Merge them. */ - merge_blocks_nomove (a, b); - if (rtl_dump_file) fprintf (rtl_dump_file, "Moved block %d after %d and merged.\n", b->index, a->index); + + /* Now blocks A and B are contiguous. Merge them. */ + merge_blocks_nomove (a, b); } /* Attempt to merge basic blocks that are potentially non-adjacent.