Commit 7e0667ff by Sebastian Pop

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
parent 2e5a7cbf
...@@ -5,7 +5,7 @@ void abort (void); ...@@ -5,7 +5,7 @@ void abort (void);
void foo (int N) void foo (int N)
{ {
int i, j; int i, j;
int x[10000][10000]; int x[1000][1000];
for (i = 0; i < N; i++) for (i = 0; i < N; i++)
for (j = 0; j < N; j++) for (j = 0; j < N; j++)
...@@ -19,7 +19,7 @@ void foo (int N) ...@@ -19,7 +19,7 @@ void foo (int N)
int main(void) int main(void)
{ {
foo (10000); foo (1000);
return 0; return 0;
} }
......
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