run-id-1.c: Adjusted size of data to fit on 32-bit machines.
* testsuite/gcc.dg/graphite/run-id-1.c: Adjusted size of data to fit on 32-bit machines. From-SVN: r154578
This commit is contained in:
parent
2e5a7cbf74
commit
7e0667ffc7
@ -5,7 +5,7 @@ void abort (void);
|
||||
void foo (int N)
|
||||
{
|
||||
int i, j;
|
||||
int x[10000][10000];
|
||||
int x[1000][1000];
|
||||
|
||||
for (i = 0; i < N; i++)
|
||||
for (j = 0; j < N; j++)
|
||||
@ -19,7 +19,7 @@ void foo (int N)
|
||||
|
||||
int main(void)
|
||||
{
|
||||
foo (10000);
|
||||
foo (1000);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user