mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-10 08:22:11 +01:00
27 lines
546 B
Fortran
27 lines
546 B
Fortran
! @@name: ordered.2
|
|
! @@type: F-fixed
|
|
! @@operation: compile
|
|
! @@expect: ct-error
|
|
! @@version: pre_omp_3.0
|
|
SUBROUTINE WORK(I)
|
|
INTEGER I
|
|
END SUBROUTINE WORK
|
|
|
|
SUBROUTINE ORDERED_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 ORDERED_WRONG
|