aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/gomp/crayptr5.f90
blob: 5ade16c83bcf3cf165decb31e24de4b74302d4a7 (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
! { dg-do compile }
! { dg-options "-fopenmp -fcray-pointer" }
!
! PR fortran/43985

subroutine pete(A)
  real(8) :: A
  print *, 'pete got ',A
  if (A /= 3.0) call abort()
end subroutine pete

       subroutine bob()
         implicit none
         real(8) peted
         pointer (ipeted, peted(*))
         integer(4) sz
         ipeted = malloc(5*8)
         peted(1:5) = [ 1.,2.,3.,4.,5.]
         sz = 3
!$omp parallel default(shared)
         call pete(peted(sz))
!$omp end parallel
         return
       end subroutine bob

call bob()
end