aboutsummaryrefslogtreecommitdiff
path: root/gcc/cfgrtl.c
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@gcc.gnu.org>2011-05-13 20:02:42 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2011-05-13 20:02:42 +0000
commitdc764d10fa02c67d5a8748ce5f4c14096224ff89 (patch)
tree6cc3d5af3a75d2926126cff2aad2414c5b228316 /gcc/cfgrtl.c
parent75933b07b7a2b35b731e4f66e69eb800a824595e (diff)
downloadgcc-dc764d10fa02c67d5a8748ce5f4c14096224ff89.zip
gcc-dc764d10fa02c67d5a8748ce5f4c14096224ff89.tar.gz
gcc-dc764d10fa02c67d5a8748ce5f4c14096224ff89.tar.bz2
cfgrtl.c (cfg_layout_redirect_edge_and_branch): Adjust dump message.
* cfgrtl.c (cfg_layout_redirect_edge_and_branch): Adjust dump message. * regcprop.c (copyprop_hardreg_forward): Test MAY_HAVE_DEBUG_INSNS in lieu of MAY_HAVE_DEBUG_STMTS. * tree-cfgcleanup.c (remove_forwarder_block): Do not attempt to move debug statements if !MAY_HAVE_DEBUG_STMTS. From-SVN: r173737
Diffstat (limited to 'gcc/cfgrtl.c')
-rw-r--r--gcc/cfgrtl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c
index 5bafc0f..482568c 100644
--- a/gcc/cfgrtl.c
+++ b/gcc/cfgrtl.c
@@ -2608,7 +2608,7 @@ cfg_layout_redirect_edge_and_branch (edge e, basic_block dest)
delete_insn (BB_END (src));
}
if (dump_file)
- fprintf (dump_file, "Fallthru edge %i->%i redirected to %i\n",
+ fprintf (dump_file, "Redirecting fallthru edge %i->%i to %i\n",
e->src->index, e->dest->index, dest->index);
ret = redirect_edge_succ_nodup (e, dest);
}