* gcc.target/i386/pr33329.c: Fix tabcount increase.
authorUros Bizjak <uros@gcc.gnu.org>
Sun, 17 Jun 2012 22:09:40 +0000 (00:09 +0200)
committerUros Bizjak <uros@gcc.gnu.org>
Sun, 17 Jun 2012 22:09:40 +0000 (00:09 +0200)
From-SVN: r188716

gcc/testsuite/gcc.target/i386/pr33329.c

index e7ffb88e15211cf80a9c54c40b37ee9038b84a79..56092fecaefb64f9cbb8aa3f5d4e55de410f9206 100644 (file)
@@ -7,7 +7,7 @@ void f (void)
 {
   int tabs[1024], tabcount;
 
-  for (tabcount = 1; tabcount <= 1024; tabcount += 7)
+  for (tabcount = 1; tabcount <= 1024; tabcount += 1023)
     {
       int i;
       for (i = 0; i < 1024; i++)