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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libgomp/] [testsuite/] [libgomp.fortran/] [allocatable5.f90] - Rev 735

Compare with Previous | Blame | View Log

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

program pr42866
  integer, allocatable :: a(:)
  allocate (a(16))
  a = 0
  !$omp parallel
    !$omp sections reduction(+:a)
      a = a + 1
    !$omp section
      a = a + 2
    !$omp end sections
  !$omp end parallel
  if (any (a.ne.3)) call abort
  deallocate (a)
end

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.