cfgrtl.c (cfg_layout_redirect_edge_and_branch): Print the debug message before redirecting the edge.

* cfgrtl.c (cfg_layout_redirect_edge_and_branch): Print the debug
	message before redirecting the edge.

From-SVN: r79772
This commit is contained in:
Josef Zlomek 2004-03-21 07:38:20 +01:00 committed by Josef Zlomek
parent d52666c3f3
commit eabd7d3156
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-03-21 Josef Zlomek <zlomekj@suse.cz>
* cfgrtl.c (cfg_layout_redirect_edge_and_branch): Print the debug
message before redirecting the edge.
2004-03-20 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
* emit-rtl.c (set_mem_attributes_minus_bitpos): Set MEM_POINTER

View File

@ -2439,10 +2439,11 @@ cfg_layout_redirect_edge_and_branch (edge e, basic_block dest)
&& onlyjump_p (BB_END (src)))
delete_insn (BB_END (src));
}
redirect_edge_succ_nodup (e, dest);
if (dump_file)
fprintf (dump_file, "Fallthru edge %i->%i redirected to %i\n",
e->src->index, e->dest->index, dest->index);
redirect_edge_succ_nodup (e, dest);
ret = true;
}