* bb-reorder.c (emit_jump_to_block_after): Protect use of HAVE_return.

From-SVN: r34274
This commit is contained in:
Richard Henderson 2000-05-30 14:02:06 -07:00 committed by Richard Henderson
parent 7ae2112bd2
commit 48b710ddb7
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2000-05-30 Richard Henderson <rth@cygnus.com>
* bb-reorder.c (emit_jump_to_block_after): Protect use of HAVE_return.
2000-05-30 Bruce Korb <bkorb@gnu.org>
* fixinc/tests/*: Added expected result files for fixinc's make check

View File

@ -501,12 +501,16 @@ emit_jump_to_block_after (bb, after)
}
else
{
#ifdef HAVE_return
if (! HAVE_return)
abort ();
jump = emit_jump_insn_after (gen_return (), after);
if (rtl_dump_file)
fprintf (rtl_dump_file, "Emitting return\n");
#else
abort ();
#endif
}
return jump;