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

22 lines
503 B
Fortran

! RUN: not %flang -fsyntax-only -fopenmp %s 2>&1 | FileCheck %s
! OpenMP Version 4.5
! 2.9.2 taskloop Construct
! Invalid entry to OpenMP structured block.
program omp_taskloop
integer i , j
!CHECK: invalid branch into an OpenMP structured block
goto 10
!$omp taskloop private(j) grainsize(500) nogroup
do i=1,10000
do j=1,i
!CHECK: In the enclosing TASKLOOP directive branched into
10 call loop_body(i, j)
end do
end do
!$omp end taskloop
end program omp_taskloop