! @@name: ordered.2f ! @@type: F-fixed ! @@compilable: no ! @@linkable: no ! @@expect: failure 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