mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-09 22:17:53 +08:00
* bb-reorder.c (emit_jump_to_block_after): Protect use of HAVE_return.
From-SVN: r34274
This commit is contained in:
parent
7ae2112bd2
commit
48b710ddb7
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user