d9c194cb9e
PR middle-end/36802 * omp-low.c (use_pointer_for_field): Only call maybe_lookup_decl on parallel and task contexts. * testsuite/libgomp.c/pr36802-1.c: New test. * testsuite/libgomp.c/pr36802-2.c: New test. * testsuite/libgomp.c/pr36802-3.c: New test. From-SVN: r142546
35 lines
380 B
C
35 lines
380 B
C
/* PR middle-end/36802 */
|
|
|
|
extern void abort (void);
|
|
|
|
int
|
|
foo (int k)
|
|
{
|
|
int i = 0;
|
|
#pragma omp parallel
|
|
#pragma omp single
|
|
{
|
|
if (!k)
|
|
{
|
|
int j;
|
|
for (j = 0; j < 10; j++)
|
|
#pragma omp task
|
|
if (j == 4)
|
|
i++;
|
|
}
|
|
else
|
|
i++;
|
|
}
|
|
return i;
|
|
}
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
if (foo (0) != 1)
|
|
abort ();
|
|
if (foo (1) != 1)
|
|
abort ();
|
|
return 0;
|
|
}
|