URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [gomp/] [pr44536.f90] - Rev 302
Compare with Previous | Blame | View Log
! PR fortran/44536
! { dg-do compile }
! { dg-options "-fopenmp" }
subroutine foo (a, i, j)
integer, dimension(:) :: a
integer :: i, j
!$omp parallel default(none) shared(i, j) ! { dg-error "enclosing parallel" }
j=a(i) ! { dg-error "not specified in" }
!$omp end parallel
end subroutine