Commit 9fd814b0 by Uros Bizjak Committed by Uros Bizjak

pr33329.c (f): Increase tabs array to 1024.

	* gcc.target/i386/pr33329.c (f): Increase tabs array to 1024.

From-SVN: r188715
parent ca3f2950
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> 2012-06-17 Tobias Burnus <burnus@net-b.de>
PR fortran/53691 PR fortran/53691
PR fortran/53685 PR fortran/53685
* gfortran.dg/transfer_check_3.f90: New. * 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. * gcc.dg/tree-ssa/vrp68.c: Fix scan-tree-dump-times argument order.
......
...@@ -5,12 +5,12 @@ extern void g (int *); ...@@ -5,12 +5,12 @@ extern void g (int *);
void f (void) 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; int i;
for (i = 0; i < 8; i++) for (i = 0; i < 1024; i++)
tabs[i] = i * 2; tabs[i] = i * 2;
g (tabs); g (tabs);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment