]> gcc.gnu.org Git - gcc.git/commitdiff
* stmt.c (expand_end_bindings): Fix thinko last change.
authorRichard Henderson <rth@cygnus.com>
Thu, 25 May 2000 16:33:32 +0000 (09:33 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Thu, 25 May 2000 16:33:32 +0000 (09:33 -0700)
From-SVN: r34170

gcc/ChangeLog
gcc/stmt.c

index 43a8e4f93a08e413547eddf94718bf14337f33b1..d0f7f276c3921284b180b529441b5c02af03fda8 100644 (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>
 
index 81f413225a72ae2dee200d640d14beb5b3fa9830..76dcdc364ef97bb0b7d5588a891616f1f3a95b0b 100644 (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);
This page took 0.085569 seconds and 5 git commands to generate.