blob: 17ceb9496c8d34223ff8c4819ee91880ea4a714c [file] [log] [blame] [edit]
! This test checks lowering of OpenMP parallel 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_parallel_master_taskloop
integer :: i, j = 1
!CHECK: not yet implemented: Taskloop construct
!$omp parallel master taskloop
do i=1,10
j = j + 1
end do
!$omp end parallel master taskloop
end subroutine