Files
clang-p2996/flang/test/Semantics/OpenMP/omp-taskloop01.f90
PeixinQiao b826d551fc [NFC] Move flang OpenMP semantic tests under one single directory
To be consistent with OpenACC and will find the tests in one single
directory for OpenMP.

Reviewed By: kiranchandramohan

Differential Revision: https://reviews.llvm.org/D127529
2022-06-11 10:46:42 +08:00

24 lines
449 B
Fortran

! RUN: %python %S/../test_errors.py %s %flang -fopenmp
! OpenMP Version 4.5
! 2.9.2 taskloop Construct
subroutine parallel_work
integer i
integer j
!$omp taskgroup
!$omp task
call long_running_task()
!$omp end task
!$omp taskloop private(j) grainsize(500) nogroup
do i=1,10000
do j=1,i
call loop_body(i, j)
end do
end do
!$omp end taskloop
!$omp end taskgroup
end subroutine parallel_work