Commit eabd7d31 by Josef Zlomek Committed by Josef Zlomek

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

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
parent d52666c3
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> 2004-03-20 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
* emit-rtl.c (set_mem_attributes_minus_bitpos): Set MEM_POINTER * 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) ...@@ -2439,10 +2439,11 @@ cfg_layout_redirect_edge_and_branch (edge e, basic_block dest)
&& onlyjump_p (BB_END (src))) && onlyjump_p (BB_END (src)))
delete_insn (BB_END (src)); delete_insn (BB_END (src));
} }
redirect_edge_succ_nodup (e, dest);
if (dump_file) if (dump_file)
fprintf (dump_file, "Fallthru edge %i->%i redirected to %i\n", fprintf (dump_file, "Fallthru edge %i->%i redirected to %i\n",
e->src->index, e->dest->index, dest->index); e->src->index, e->dest->index, dest->index);
redirect_edge_succ_nodup (e, dest);
ret = true; ret = true;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment