Retro68/gcc/libgomp/testsuite/libgomp.fortran/allocatable8.f90
2018-12-28 16:30:48 +01:00

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