Commit 2150ad33 by Richard Henderson Committed by Richard Henderson

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
parent 1651cc96
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> 2002-05-01 Jakub Jelinek <jakub@redhat.com>
* cppinit.c (cpp_handle_option) [-dM]: Don't set no_output here... * cppinit.c (cpp_handle_option) [-dM]: Don't set no_output here...
......
...@@ -775,12 +775,12 @@ merge_blocks_move_successor_nojumps (a, b) ...@@ -775,12 +775,12 @@ merge_blocks_move_successor_nojumps (a, b)
/* Restore the real end of b. */ /* Restore the real end of b. */
b->end = real_b_end; b->end = real_b_end;
/* Now blocks A and B are contiguous. Merge them. */
merge_blocks_nomove (a, b);
if (rtl_dump_file) if (rtl_dump_file)
fprintf (rtl_dump_file, "Moved block %d after %d and merged.\n", fprintf (rtl_dump_file, "Moved block %d after %d and merged.\n",
b->index, a->index); 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. /* Attempt to merge basic blocks that are potentially non-adjacent.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment