mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 05:00:26 +08:00
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:
parent
d52666c3f3
commit
eabd7d3156
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user