* stmt.c (expand_end_bindings): Fix thinko last change.

From-SVN: r34170
This commit is contained in:
Richard Henderson 2000-05-25 09:33:32 -07:00 committed by Richard Henderson
parent ce152ef836
commit d1ee23e5c3
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2000-05-25 Richard Henderson <rth@cygnus.com>
* stmt.c (expand_end_bindings): Fix thinko last change.
2000-05-25 Andrew MacLeod <amacleod@cygnus.com>
Andrew Haley <aph@cygnus.com>

View file

@ -3688,7 +3688,7 @@ expand_end_bindings (vars, mark_ends, dont_jump_in)
insn = get_last_insn ();
if (GET_CODE (insn) == NOTE)
insn = prev_nonnote_insn (insn);
reachable = GET_CODE (insn) != BARRIER;
reachable = (! insn || GET_CODE (insn) != BARRIER);
/* Do the cleanups. */
expand_cleanups (thisblock->data.block.cleanups, NULL_TREE, 0, reachable);