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
This commit is contained in:
Jan Hubicka 2003-04-14 16:19:12 +02:00 committed by Jan Hubicka
parent 26224a84b5
commit 58e6ae30c7
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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.

View File

@ -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 ();