]> gcc.gnu.org Git - gcc.git/commitdiff
* unroll.c(loop_interations)[GT]: Add missing break.
authorGraham Stott <graham.stott@btinternet.com>
Sat, 27 Sep 2003 15:33:27 +0000 (15:33 +0000)
committerGraham Stott <grahams@gcc.gnu.org>
Sat, 27 Sep 2003 15:33:27 +0000 (15:33 +0000)
From-SVN: r71854

gcc/ChangeLog
gcc/unroll.c

index d65899a425ec1013d067790b3e397f57621330d6..4ad2f532a185b92c40756bbb5e72e1fbc5441e96 100644 (file)
@@ -1,3 +1,7 @@
+2003-09-27  Graham Stott  <graham.stott@btinternet.com>
+
+       * unroll.c (loop_interations)[GT]: Add missing break.
+
 2003-09-27  Kelley Cook  <kcook@gcc.gnu.org>
 
        * config/chorus.h, config/darwin-c.c, config/darwin-protos.h,
index 1c66b13fe780945a9f4a3d44c183c03faaf9cd47..084660ca11bc2d65662d0f5c8f34d409314545a7 100644 (file)
@@ -3538,6 +3538,7 @@ loop_iterations (struct loop *loop)
       unsigned_p = 1;
     case GT:
       compare_dir = -1;
+      break;
     case NE:
       compare_dir = 0;
       break;
This page took 0.080717 seconds and 5 git commands to generate.