OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [gfortran.dg/] [gomp/] [crayptr5.f90] - Rev 302

Go to most recent revision | Compare with Previous | Blame | View Log

! { 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

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.