diff options
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/cfgcleanup.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0a2d1c5..a3733fc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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... diff --git a/gcc/cfgcleanup.c b/gcc/cfgcleanup.c index 74a2256..8924781 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. |
