mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-10 08:22:11 +01:00
20 lines
443 B
Fortran
20 lines
443 B
Fortran
! @@name: nesting_restrict.4
|
|
! @@type: F-fixed
|
|
! @@operation: compile
|
|
! @@expect: ct-error
|
|
! @@version: pre_omp_3.0
|
|
SUBROUTINE WRONG4(N)
|
|
INTEGER N
|
|
|
|
INTEGER I
|
|
!$OMP PARALLEL DEFAULT(SHARED)
|
|
!$OMP DO
|
|
DO I = 1, N
|
|
CALL WORK(I, 1)
|
|
! incorrect nesting of barrier region in a loop region
|
|
!$OMP BARRIER
|
|
CALL WORK(I, 2)
|
|
END DO
|
|
!$OMP END PARALLEL
|
|
END SUBROUTINE WRONG4
|