From deb109b24d6c3228c1a5057847e2c2dc4bf48c1e Mon Sep 17 00:00:00 2001 From: Jack Howarth <howarth@bromo.med.uc.edu> Date: Fri, 18 Dec 2009 07:38:06 +0000 Subject: [PATCH] re PR testsuite/42135 (FAIL: libgomp.graphite/force-parallel-2.c execution test) Fix PR42135. 2009-12-18 Jack Howarth <howarth@bromo.med.uc.edu> PR testsuite/42135 * libgomp.graphite/force-parallel-2.c: Reduce array size. From-SVN: r155337 --- libgomp/ChangeLog | 5 +++++ libgomp/testsuite/libgomp.graphite/force-parallel-2.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 510ba40cdd6a..5d2822028e7e 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,8 @@ +2009-12-18 Jack Howarth <howarth@bromo.med.uc.edu> + + PR testsuite/42135 + * libgomp.graphite/force-parallel-2.c: Reduce array size. + 2009-12-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> * Makefile.in: Regenerate. diff --git a/libgomp/testsuite/libgomp.graphite/force-parallel-2.c b/libgomp/testsuite/libgomp.graphite/force-parallel-2.c index 7f2c823f73ea..03d823653a74 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; } -- GitLab