Skip to content
Snippets Groups Projects
Commit deb109b2 authored by Jack Howarth's avatar Jack Howarth Committed by Sebastian Pop
Browse files

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
parent 4960e3f0
No related branches found
No related tags found
No related merge requests found
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> 2009-12-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* Makefile.in: Regenerate. * Makefile.in: Regenerate.
......
...@@ -3,7 +3,7 @@ void abort (void); ...@@ -3,7 +3,7 @@ void abort (void);
void parloop (int N) void parloop (int N)
{ {
int i, j; int i, j;
int x[10000][10000]; int x[500][500];
for (i = 0; i < N; i++) for (i = 0; i < N; i++)
for (j = 0; j < N; j++) for (j = 0; j < N; j++)
...@@ -17,7 +17,7 @@ void parloop (int N) ...@@ -17,7 +17,7 @@ void parloop (int N)
int main(void) int main(void)
{ {
parloop(10000); parloop(500);
return 0; return 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment