aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/gomp/omp_threadprivate1.f90
blob: 55aad067082e31cbcdc152e7e6abcdd4cbc1026a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
! { dg-require-effective-target tls }
      module omp_threadprivate1
	common /T/ a
      end module omp_threadprivate1
      subroutine bad1
	use omp_threadprivate1
!$omp threadprivate (/T/)	! { dg-error "not found" }
      end subroutine bad1
      subroutine bad2
	common /S/ b
!$omp threadprivate (/S/)
      contains
	subroutine bad3
!$omp parallel copyin (/T/)	! { dg-error "not found" }
!$omp end parallel		! { dg-error "" }
	end subroutine bad3
      end subroutine bad2