Commit 0e403ec3 by Andreas Schwab Committed by Richard Henderson

* combine.c (distribute_notes): Handle REG_EH_RETHROW.

From-SVN: r28743
parent 212f5d30
Tue Aug 17 21:57:23 1999 Andreas Schwab <schwab@suse.de>
* combine.c (distribute_notes): Handle REG_EH_RETHROW.
Tue Aug 17 17:39:43 EDT 1999 Andrew MacLeod <amacleod@cygnus.com> Tue Aug 17 17:39:43 EDT 1999 Andrew MacLeod <amacleod@cygnus.com>
* flow.c (create_edge_list): Use xmalloc, not malloc. * flow.c (create_edge_list): Use xmalloc, not malloc.
......
...@@ -11407,8 +11407,9 @@ distribute_notes (notes, from_insn, i3, i2, elim_i2, elim_i1) ...@@ -11407,8 +11407,9 @@ distribute_notes (notes, from_insn, i3, i2, elim_i2, elim_i1)
break; break;
case REG_EH_REGION: case REG_EH_REGION:
/* This note must remain with the call. It should not be possible case REG_EH_RETHROW:
for both I2 and I3 to be a call. */ /* These notes must remain with the call. It should not be
possible for both I2 and I3 to be a call. */
if (GET_CODE (i3) == CALL_INSN) if (GET_CODE (i3) == CALL_INSN)
place = i3; place = i3;
else if (i2 && GET_CODE (i2) == CALL_INSN) else if (i2 && GET_CODE (i2) == CALL_INSN)
......
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