aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/libgomp/testsuite/libgomp.fortran/pr32359.f90
blob: e48a8a704062f34940fffea9afc5b40013949213 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
! { dg-do compile }
!
! PR fortran/32359
! Contributed by Bill Long <longb@cray.com>

subroutine test
      use omp_lib
      implicit none
      integer, parameter :: NT = 4
      integer :: a
      save
!$omp threadprivate(a)
      a = 1

!$    call omp_set_num_threads(NT)
!$omp parallel
      print *, omp_get_thread_num(), a
!$omp end parallel

end subroutine test

! Derived from OpenMP test omp1/F2_6_2_8_5i.f90
      use omp_lib
      implicit none
      integer, parameter :: NT = 4
      integer :: a = 1
!$omp threadprivate(a)

!$    call omp_set_num_threads(NT)
!$omp parallel
      print *, omp_get_thread_num(), a
!$omp end parallel

      END