mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-21 09:29:36 +00:00
15 lines
340 B
Fortran
15 lines
340 B
Fortran
! { dg-do run }
|
|
! { dg-require-effective-target tls_runtime }
|
|
!$ use omp_lib
|
|
|
|
integer, save, allocatable :: a(:, :)
|
|
logical :: l
|
|
!$omp threadprivate (a)
|
|
if (allocated (a)) STOP 1
|
|
l = .false.
|
|
!$omp parallel copyin (a) num_threads (4) reduction(.or.:l)
|
|
l = l.or.allocated (a)
|
|
!$omp end parallel
|
|
if (l.or.allocated (a)) STOP 2
|
|
end
|