* flow.c (delete_block): Fix typo last change.

From-SVN: r32681
This commit is contained in:
Richard Henderson 2000-03-21 23:14:41 -08:00 committed by Richard Henderson
parent 736fb49718
commit 1fa4609a03
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2000-03-21 Richard Henderson <rth@cygnus.com>
* flow.c (delete_block): Fix typo last change.
2000-03-21 Mark Mitchell <mark@codesourcery.com>
* c-common.c (c_expand_expr_stmt): Use COMPLETE_TYPE_OR_VOID_P,

View File

@ -1913,7 +1913,7 @@ delete_block (b)
end = tmp;
/* Include any barrier that may follow the basic block. */
tmp = next_nonnote_insn (b->end);
tmp = next_nonnote_insn (end);
if (tmp && GET_CODE (tmp) == BARRIER)
end = tmp;