mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-12 11:29:30 +00:00
17 lines
323 B
Fortran
17 lines
323 B
Fortran
|
! { dg-do run }
|
||
|
|
||
|
program example
|
||
|
integer :: x
|
||
|
x = 1
|
||
|
!$omp parallel
|
||
|
!$omp single
|
||
|
!$omp task shared(x) depend(in: x)
|
||
|
if (x .ne. 1) call abort ()
|
||
|
!$omp end task
|
||
|
!$omp task shared(x) depend(out: x)
|
||
|
x = 2
|
||
|
!$omp end task
|
||
|
!$omp end single
|
||
|
!$omp end parallel
|
||
|
end program
|