aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/gomp/crayptr2.f90
blob: 476d7b9e771c2fabaf236620f44f370eba601865 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
! { dg-do compile }
! { dg-options "-fopenmp -fcray-pointer" }
! { dg-require-effective-target tls }

module crayptr2
  integer :: e		! { dg-error "CRAY POINTEE attribute conflicts with THREADPRIVATE" }
  pointer (ip5, e)

! The standard is not very clear about this.
! Certainly, Cray pointees can't be SAVEd, nor they can be
! in COMMON, so the only way to make threadprivate Cray pointees would
! be if they are module variables.  But threadprivate pointees don't
! make any sense anyway.

!$omp threadprivate (e)

end module crayptr2