5c561fa938
Reviewed-by: Thomas Schwinge <thomas@codesourcery.com> 2017-09-28 Tom de Vries <tom@codesourcery.com> * testsuite/libgomp.c++/for-12.C: Remove superfluous -fopenmp option setting. * testsuite/libgomp.c++/pr69393.C: Same. * testsuite/libgomp.c++/taskloop-1.C: Same. * testsuite/libgomp.c++/taskloop-3.C: Same. * testsuite/libgomp.c++/taskloop-4.C: Same. * testsuite/libgomp.c/for-4.c: Same. * testsuite/libgomp.c/pr66199-3.c: Same. * testsuite/libgomp.c/pr66199-4.c: Same. * testsuite/libgomp.c/pr66199-6.c: Same. * testsuite/libgomp.c/taskloop-1.c: Same. * testsuite/libgomp.c/taskloop-3.c: Same. * testsuite/libgomp.c/taskloop-4.c: Same. * testsuite/libgomp.fortran/aligned1.f03: Same. * testsuite/libgomp.fortran/condinc1.f: Same. * testsuite/libgomp.fortran/condinc3.f90: Same. * testsuite/libgomp.fortran/crayptr1.f90: Same. * testsuite/libgomp.fortran/crayptr2.f90: Same. * testsuite/libgomp.fortran/crayptr3.f90: Same. * testsuite/libgomp.fortran/omp_cond1.f: Same. * testsuite/libgomp.fortran/omp_cond3.F90: Same. * testsuite/libgomp.fortran/pr66199-1.f90: Same. * testsuite/libgomp.fortran/pr66199-2.f90: Same. * testsuite/libgomp.fortran/recursion1.f90: Same. * testsuite/libgomp.fortran/target2.f90: Same. * testsuite/libgomp.fortran/target5.f90: Same. * testsuite/libgomp.fortran/task3.f90: Same. From-SVN: r253250
47 lines
728 B
C
47 lines
728 B
C
/* { dg-do run } */
|
|
/* { dg-options "-O2 -std=c99" } */
|
|
|
|
int q, r, e;
|
|
|
|
__attribute__((noinline, noclone)) void
|
|
foo (long a, long b)
|
|
{
|
|
#pragma omp taskloop lastprivate (q) nogroup
|
|
for (long d = a; d < b; d += 2)
|
|
{
|
|
q = d;
|
|
if (d < 2 || d > 6 || (d & 1))
|
|
#pragma omp atomic
|
|
e |= 1;
|
|
}
|
|
}
|
|
|
|
__attribute__((noinline, noclone)) int
|
|
bar (int a, int b)
|
|
{
|
|
int q = 7;
|
|
#pragma omp taskloop lastprivate (q)
|
|
for (int d = a; d < b; d++)
|
|
{
|
|
if (d < 12 || d > 17)
|
|
#pragma omp atomic
|
|
e |= 1;
|
|
q = d;
|
|
}
|
|
return q;
|
|
}
|
|
|
|
int
|
|
main ()
|
|
{
|
|
#pragma omp parallel
|
|
#pragma omp single
|
|
{
|
|
foo (2, 7);
|
|
r = bar (12, 18);
|
|
}
|
|
if (q != 6 || r != 17 || e)
|
|
__builtin_abort ();
|
|
return 0;
|
|
}
|