diff options
Diffstat (limited to 'libgomp/testsuite/libgomp.graphite/force-parallel-2.c')
-rw-r--r-- | libgomp/testsuite/libgomp.graphite/force-parallel-2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgomp/testsuite/libgomp.graphite/force-parallel-2.c b/libgomp/testsuite/libgomp.graphite/force-parallel-2.c index 7f2c823f73e..03d823653a7 100644 --- a/libgomp/testsuite/libgomp.graphite/force-parallel-2.c +++ b/libgomp/testsuite/libgomp.graphite/force-parallel-2.c @@ -3,7 +3,7 @@ void abort (void); void parloop (int N) { int i, j; - int x[10000][10000]; + int x[500][500]; for (i = 0; i < N; i++) for (j = 0; j < N; j++) @@ -17,7 +17,7 @@ void parloop (int N) int main(void) { - parloop(10000); + parloop(500); return 0; } |