]> gcc.gnu.org Git - gcc.git/commitdiff
* flow.c (find_basic_blocks): Fix end case bug.
authorMike Stump <mrs@gcc.gnu.org>
Wed, 18 Jun 1997 21:30:55 +0000 (21:30 +0000)
committerMike Stump <mrs@gcc.gnu.org>
Wed, 18 Jun 1997 21:30:55 +0000 (21:30 +0000)
From-SVN: r14257

gcc/flow.c

index 190cfc2ec8e6a0c95914b28eee7c8d0a8e1f097a..0689d6041b348ae28d8ba41300425fac9b2c5b4b 100644 (file)
@@ -608,7 +608,7 @@ find_basic_blocks (f, nonlocal_label_list)
                     to as live.  */
 
                  for (insn = basic_block_head[i];
-                      insn != basic_block_end[i];
+                      insn != NEXT_INSN (basic_block_end[i]);
                       insn = NEXT_INSN (insn))
                    {
                      if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
This page took 0.081657 seconds and 5 git commands to generate.