blob: 26f664b2662dcb0202f22736f741518888b033c2 [file]
! This test checks lowering of OpenMP master taskloop Directive.
! RUN: %not_todo_cmd bbc -emit-fir -fopenmp -o - %s 2>&1 | FileCheck %s
! RUN: %not_todo_cmd %flang_fc1 -emit-fir -fopenmp -o - %s 2>&1 | FileCheck %s
subroutine test_master_taskloop
integer :: i, j = 1
!CHECK: not yet implemented: Taskloop construct
!$omp master taskloop
do i=1,10
j = j + 1
end do
!$omp end master taskloop
end subroutine