Commit 5419bc7f by Bernd Schmidt Committed by Bernd Schmidt

cfgrtl.c (emit_insn_at_entry): Use gcc_assert, not abort.

	* cfgrtl.c (emit_insn_at_entry): Use gcc_assert, not abort.

From-SVN: r116969
parent 11b904a1
...@@ -9,6 +9,8 @@ ...@@ -9,6 +9,8 @@
* rtl.h (emit_insn_at_entry): Declare it. * rtl.h (emit_insn_at_entry): Declare it.
* integrate.c (emit_initial_value_sets): Use it. * integrate.c (emit_initial_value_sets): Use it.
* cfgrtl.c (emit_insn_at_entry): Use gcc_assert, not abort.
2006-09-15 Kazu Hirata <kazu@codesourcery.com> 2006-09-15 Kazu Hirata <kazu@codesourcery.com>
* doc/tm.texi (TARGET_FUNCTION_VALUE): Put @deftypefn all in * doc/tm.texi (TARGET_FUNCTION_VALUE): Put @deftypefn all in
......
...@@ -460,8 +460,7 @@ emit_insn_at_entry (rtx insn) ...@@ -460,8 +460,7 @@ emit_insn_at_entry (rtx insn)
{ {
edge_iterator ei = ei_start (ENTRY_BLOCK_PTR->succs); edge_iterator ei = ei_start (ENTRY_BLOCK_PTR->succs);
edge e = ei_safe_edge (ei); edge e = ei_safe_edge (ei);
if (!(e->flags & EDGE_FALLTHRU)) gcc_assert (e->flags & EDGE_FALLTHRU);
abort ();
insert_insn_on_edge (insn, e); insert_insn_on_edge (insn, e);
commit_edge_insertions (); commit_edge_insertions ();
......
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