Skip to content
Snippets Groups Projects
Commit 49c3f245 authored by John David Anglin's avatar John David Anglin
Browse files

Revert "Set num_threads to 50 on 32-bit hppa in two libgomp loop tests"

This reverts commit b1420971.
parent 10cbfcd6
No related branches found
No related tags found
No related merge requests found
#if defined(__hppa__) && !defined(__LP64__)
#define NUM_THREADS 50
#else
#define NUM_THREADS 64
#endif
extern "C" void abort (void);
int a;
......@@ -25,7 +19,7 @@ foo ()
int
main (void)
{
#pragma omp parallel num_threads (NUM_THREADS)
#pragma omp parallel num_threads (64)
foo ();
return 0;
......
#if defined(__hppa__) && !defined(__LP64__)
#define NUM_THREADS 50
#else
#define NUM_THREADS 64
#endif
extern void abort (void);
int a;
......@@ -25,7 +19,7 @@ foo ()
int
main (void)
{
#pragma omp parallel num_threads (NUM_THREADS)
#pragma omp parallel num_threads (64)
foo ();
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