From: Graham Stott Date: Sat, 27 Sep 2003 15:33:27 +0000 (+0000) Subject: * unroll.c(loop_interations)[GT]: Add missing break. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=337f35bbdcc9988f8c707d807c165b02a5896378;p=gcc.git * unroll.c(loop_interations)[GT]: Add missing break. From-SVN: r71854 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d65899a425e..4ad2f532a18 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-09-27 Graham Stott + + * unroll.c (loop_interations)[GT]: Add missing break. + 2003-09-27 Kelley Cook * config/chorus.h, config/darwin-c.c, config/darwin-protos.h, diff --git a/gcc/unroll.c b/gcc/unroll.c index 1c66b13fe78..084660ca11b 100644 --- a/gcc/unroll.c +++ b/gcc/unroll.c @@ -3538,6 +3538,7 @@ loop_iterations (struct loop *loop) unsigned_p = 1; case GT: compare_dir = -1; + break; case NE: compare_dir = 0; break;