* jump.c (calculate_can_reach_end): Fix thinko.

From-SVN: r23547
This commit is contained in:
David S. Miller 1998-11-06 03:03:05 +00:00 committed by David S. Miller
parent b6ef60604f
commit ca76d13ddf
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
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.

View File

@ -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);