From 11a932c0ffa433aff94e71235ea125df88ed052a Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Mon, 9 Mar 1998 17:11:32 +0000 Subject: Workaround for -fprofile-arcs/computed goto failure. * profile.c (branch_prob): If see computed goto, call fatal instead of abort. From-SVN: r18453 --- gcc/profile.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gcc/profile.c') diff --git a/gcc/profile.c b/gcc/profile.c index dda75c9..5d319f4 100644 --- a/gcc/profile.c +++ b/gcc/profile.c @@ -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 -- cgit v1.1