Commit ca76d13d by David S. Miller Committed by David S. Miller

* jump.c (calculate_can_reach_end): Fix thinko.

From-SVN: r23547
parent b6ef6060
Fri Nov 6 04:07:53 1998 David S. Miller <davem@pierdol.cobaltmicro.com>
* jump.c (calculate_can_reach_end): Fix thinko.
Fri Nov 6 00:16:04 1998 Jeffrey A Law (law@cygnus.com)
* reorg.c (fill_simple_delay_slots): Fix typo.
......
......@@ -2465,8 +2465,8 @@ calculate_can_reach_end (last, check_deleted, delete_final_note)
if (insn != NULL_RTX
&& GET_CODE (insn) == NOTE
&& NOTE_LINE_NUMBER (insn) == NOTE_INSN_FUNCTION_END
&& (check_deleted != 0
&& ! INSN_DELETED_P (insn)))
&& (check_deleted == 0
|| ! INSN_DELETED_P (insn)))
{
if (delete_final_note)
delete_insn (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