aboutsummaryrefslogtreecommitdiff
path: root/libgomp/testsuite/libgomp.fortran/allocatable8.f90
blob: 84b18f34940f6fe35c70eed6568477745ea334f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
! { 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