summaryrefslogtreecommitdiff
path: root/libgomp
diff options
context:
space:
mode:
authorspop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>2009-12-18 07:38:06 +0000
committerspop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>2009-12-18 07:38:06 +0000
commit437c6f83f303f94874d0b4ac79ad8f6cdf315fef (patch)
tree7eb8f8d083134fd06d6f4cd25493d9f75cfad41b /libgomp
parentc505c9f491001a5178038da8e4b575b4c70cb8ab (diff)
downloadgcc-437c6f83f303f94874d0b4ac79ad8f6cdf315fef.tar.gz
Fix PR42135.
2009-12-18 Jack Howarth <howarth@bromo.med.uc.edu> PR testsuite/42135 * libgomp.graphite/force-parallel-2.c: Reduce array size. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@155337 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgomp')
-rw-r--r--libgomp/ChangeLog5
-rw-r--r--libgomp/testsuite/libgomp.graphite/force-parallel-2.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index 510ba40cdd6..5d2822028e7 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 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;
}