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:
Sebastian Pop 2009-11-25 05:02:31 +00:00
parent 2e5a7cbf74
commit 7e0667ffc7

View File

@ -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;
}