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.21.2.f90] - Rev 853
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do compile }
SUBROUTINE WORK(I)
INTEGER I
END SUBROUTINE WORK
SUBROUTINE A21_WRONG(N)
INTEGER N
INTEGER I
!$OMP DO ORDERED
DO I = 1, N
! incorrect because an iteration may not execute more than one
! ordered region
!$OMP ORDERED
CALL WORK(I)
!$OMP END ORDERED
!$OMP ORDERED
CALL WORK(I+1)
!$OMP END ORDERED
END DO
END SUBROUTINE A21_WRONG
Go to most recent revision | Compare with Previous | Blame | View Log