Files
clang-p2996/flang/test/Semantics/OpenMP/do07.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

25 lines
522 B
Fortran

! RUN: not %flang -fsyntax-only -fopenmp %s 2>&1 | FileCheck %s
! REQUIRES: shell
! OpenMP Version 4.5
! 2.7.1 Loop Construct
! No statement in the associated loops other than the DO statements
! can cause a branch out of the loops
program omp_do
integer i, j, k
!$omp do
do i = 1, 10
do j = 1, 10
print *, "Hello"
!CHECK: invalid branch leaving an OpenMP structured block
goto 10
end do
end do
!$omp end do
!CHECK: Outside the enclosing DO directive
10 stop
end program omp_do