pr33329.c (f): Increase tabs array to 1024.
* gcc.target/i386/pr33329.c (f): Increase tabs array to 1024. From-SVN: r188715
This commit is contained in:
parent
ca3f295026
commit
9fd814b02d
2 changed files with 8 additions and 4 deletions
|
@ -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.
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue