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
This commit is contained in:
Richard Henderson 2002-05-01 13:20:19 -07:00 committed by Richard Henderson
parent 1651cc96a4
commit 2150ad33f2
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2002-05-01 Richard Henderson <rth@redhat.com>
* cfgcleanup.c (merge_blocks_move_successor_nojumps): Emit dump
info before expunging the block.
2002-05-01 Jakub Jelinek <jakub@redhat.com>
* cppinit.c (cpp_handle_option) [-dM]: Don't set no_output here...

View File

@ -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.