Commit 11a932c0 by Jim Wilson Committed by Jim Wilson

Workaround for -fprofile-arcs/computed goto failure.

	* profile.c (branch_prob): If see computed goto, call fatal instead of
	abort.

From-SVN: r18453
parent eeb54a49
Mon Mar 9 12:02:23 1998 Jim Wilson <wilson@cygnus.com>
* profile.c (branch_prob): If see computed goto, call fatal instead of
abort.
* config/mips/sni-svr4.h (CPP_PREDEFINE): Add -DSNI and -Dsinix.
* configure.in (alpha-dec-osf): Add default case for osf* to switch.
......
......@@ -759,9 +759,10 @@ branch_prob (f, dump_file)
{
rtx label_ref;
/* Must be an IF_THEN_ELSE branch. */
/* Must be an IF_THEN_ELSE branch. If it isn't, assume it
is a computed goto, which aren't supported yet. */
if (GET_CODE (tem) != IF_THEN_ELSE)
abort ();
fatal ("-fprofile-arcs does not support computed gotos");
if (XEXP (tem, 1) != pc_rtx)
label_ref = XEXP (tem, 1);
else
......
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