URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [gomp/] [appendix-a/] [a.35.3.f90] - Rev 823
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do compile }
SUBROUTINE WRONG3(N)
INTEGER N
INTEGER I
!$OMP PARALLEL DEFAULT(SHARED)
!$OMP DO
DO I = 1, N
! incorrect nesting of regions
!$OMP SINGLE ! { dg-warning "may not be closely nested" }
CALL WORK(I, 1)
!$OMP END SINGLE
END DO
!$OMP END PARALLEL
END SUBROUTINE WRONG3
Go to most recent revision | Compare with Previous | Blame | View Log