summaryrefslogtreecommitdiff
path: root/libgomp/testsuite/libgomp.graphite
diff options
context:
space:
mode:
authorJack Howarth <howarth@bromo.med.uc.edu>2009-12-18 07:38:06 +0000
committerSebastian Pop <spop@gcc.gnu.org>2009-12-18 07:38:06 +0000
commitdeb109b24d6c3228c1a5057847e2c2dc4bf48c1e (patch)
tree7eb8f8d083134fd06d6f4cd25493d9f75cfad41b /libgomp/testsuite/libgomp.graphite
parent4960e3f0ebc3ae903edcf37f2685e03f8b7f6baf (diff)
downloadgcc-deb109b24d6c3228c1a5057847e2c2dc4bf48c1e.tar.gz
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
Diffstat (limited to 'libgomp/testsuite/libgomp.graphite')
-rw-r--r--libgomp/testsuite/libgomp.graphite/force-parallel-2.c4
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;
}