Retro68/gcc/libgomp/testsuite/libgomp.fortran/examples-4/task_dep-3.f90
2017-04-10 13:32:00 +02:00

19 lines
375 B
Fortran

! { dg-do run }
program example
integer :: x
x = 0
!$omp parallel
!$omp single
!$omp task shared(x) depend(out: x)
x = 1
!$omp end task
!$omp task shared(x) depend(out: x)
x = 2
!$omp end task
!$omp taskwait
if ((x .ne. 1) .and. (x .ne. 2)) call abort()
!$omp end single
!$omp end parallel
end program