Commit 58e6ae30 by Jan Hubicka Committed by Jan Hubicka

re PR rtl-optimization/10024 ([HP-PA] inline optimization ICE)

	PR opt/10024
	* cfgrtl.c (force_nonfallthru_and_redirect): Use unchecked_make_edge.

From-SVN: r65571
parent 26224a84
Mon Apr 14 16:18:37 CEST 2003 Jan Hubicka <jh@suse.cz>
PR opt/10024
* cfgrtl.c (force_nonfallthru_and_redirect): Use unchecked_make_edge.
2003-04-14 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
* doc/contrib.texi (Contributors): Correct my entry.
......
......@@ -933,7 +933,7 @@ force_nonfallthru_and_redirect (e, target)
&& JUMP_LABEL (e->src->end) == e->dest->head)
{
rtx note;
edge b = make_edge (e->src, target, 0);
edge b = unchecked_make_edge (e->src, target, 0);
if (!redirect_jump (e->src->end, block_label (target), 0))
abort ();
......
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