Files
clang-p2996/flang/test/Semantics/OpenMP/do09.f90
Kiran Chandramohan 3323a4bd3d [Flang][OpenMP] NFC: Remove omp prefix of test files in OpenMP Semantics
For tests in the OpenMP sub-directory the `omp` prefix is removed.
2023-02-25 11:21:38 +00:00

27 lines
581 B
Fortran

! RUN: %python %S/../test_errors.py %s %flang_fc1 -fopenmp
! OpenMP Version 4.5
! 2.7.1 Loop Construct
! The do-loop cannot be a DO WHILE or a DO loop without loop control.
program omp_do
integer :: i = 0,k
!$omp do
!ERROR: The DO loop cannot be a DO WHILE with DO directive.
do while (i <= 10)
print *, "it",i
i = i+1
end do
!$omp end do
!$omp do
!ERROR: The DO loop cannot be a DO WHILE with DO directive.
do while (i <= 10)
do while (j <= 10)
print *, "it",k
j = j+1
end do
i = i+1
end do
!$omp end do
end program omp_do