summaryrefslogtreecommitdiff
path: root/gcc/cfgcleanup.c
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2002-05-01 20:20:19 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2002-05-01 20:20:19 +0000
commitcd2e6f576b3837c9ec6e56031bae8ff326e2e15d (patch)
tree858ba8fbaeba6b7dcbed769639763f6872773ee1 /gcc/cfgcleanup.c
parente9c81b9714d7a9c08deb45e9aeee68b1447d047b (diff)
downloadgcc-cd2e6f576b3837c9ec6e56031bae8ff326e2e15d.tar.gz
* cfgcleanup.c (merge_blocks_move_successor_nojumps): Emit dump
info before expunging the block. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53014 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgcleanup.c')
-rw-r--r--gcc/cfgcleanup.c6
1 files changed, 3 insertions, 3 deletions
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.