]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR testsuite/42135 (FAIL: libgomp.graphite/force-parallel-2.c execution test)
authorJack Howarth <howarth@bromo.med.uc.edu>
Fri, 18 Dec 2009 07:38:06 +0000 (07:38 +0000)
committerSebastian Pop <spop@gcc.gnu.org>
Fri, 18 Dec 2009 07:38:06 +0000 (07:38 +0000)
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
libgomp/testsuite/libgomp.graphite/force-parallel-2.c

index 510ba40cdd6aa7ffd44d2f55303926fca5542352..5d2822028e7e64c5119deecf7b4928729e90410f 100644 (file)
@@ -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.
index 7f2c823f73ea2ae464341a950c6326ae1db0fbcc..03d823653a7475b59ef480a1e0789926b3855062 100644 (file)
@@ -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;
 }