view libgomp/testsuite/libgomp.fortran/pr29629.f90 @ 0:a06113de4d67

first commit
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Fri, 17 Jul 2009 14:47:48 +0900
parents
children 84e7813d76e9
line wrap: on
line source

! PR fortran/29629
! { dg-do run }

program pr29629
  integer :: n
  n = 10000
  if (any (func(n).ne.10000)) call abort
  contains
    function func(n)
      integer, intent(in) :: n
      integer, dimension(n) :: func
      integer :: k
      func = 0
!$omp parallel do private(k), reduction(+:func), num_threads(4)
      do k = 1, n
        func = func + 1
      end do
!$omp end parallel do
    end function
end program