Commit 48b710dd by Richard Henderson Committed by Richard Henderson

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

From-SVN: r34274
parent 7ae2112b
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;
......
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