]> gcc.gnu.org Git - gcc.git/commitdiff
pr33329.c (f): Increase tabs array to 1024.
authorUros Bizjak <ubizjak@gmail.com>
Sun, 17 Jun 2012 22:01:25 +0000 (00:01 +0200)
committerUros Bizjak <uros@gcc.gnu.org>
Sun, 17 Jun 2012 22:01:25 +0000 (00:01 +0200)
* gcc.target/i386/pr33329.c (f): Increase tabs array to 1024.

From-SVN: r188715

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

index 2f83d6103e6dea5d8e0d1f960bf2b83ba46eb6e9..905c4bba64ded50d85aa2a0d29f1626b827e5012 100644 (file)
@@ -1,10 +1,14 @@
+2012-06-17  Uros Bizjak  <ubizjak@gmail.com>
+
+       * gcc.target/i386/pr33329.c (f): Increase tabs array to 1024.
+
 2012-06-17  Tobias Burnus  <burnus@net-b.de>
 
        PR fortran/53691
        PR fortran/53685
        * gfortran.dg/transfer_check_3.f90: New.
 
-2012-06-06  Uros Bizjak  <ubizjak@gmail.com>
+2012-06-17  Uros Bizjak  <ubizjak@gmail.com>
 
        * gcc.dg/tree-ssa/vrp68.c: Fix scan-tree-dump-times argument order.
 
index bb589ee2780cb4cd248cff3e8a598737c30786e6..e7ffb88e15211cf80a9c54c40b37ee9038b84a79 100644 (file)
@@ -5,12 +5,12 @@ extern void g (int *);
 
 void f (void)
 {
-  int tabs[8], tabcount;
+  int tabs[1024], tabcount;
 
-  for (tabcount = 1; tabcount <= 8; tabcount += 7)
+  for (tabcount = 1; tabcount <= 1024; tabcount += 7)
     {
       int i;
-      for (i = 0; i < 8; i++)
+      for (i = 0; i < 1024; i++)
        tabs[i] = i * 2;
       g (tabs);
     }
This page took 0.079892 seconds and 5 git commands to generate.