xref: /llvm-project/flang/test/Lower/OpenMP/master_taskloop_simd.f90 (revision 092a819e94da3fc0cac6982e99861546237fcb04)
1! This test checks lowering of OpenMP master taskloop simd Directive.
2
3! RUN: %not_todo_cmd bbc -emit-fir -fopenmp -o - %s 2>&1 | FileCheck %s
4! RUN: %not_todo_cmd %flang_fc1 -emit-fir -fopenmp -o - %s 2>&1 | FileCheck %s
5
6subroutine test_master_taskloop_simd()
7  integer :: i, j = 1
8  !CHECK: not yet implemented: Composite TASKLOOP SIMD
9  !$omp master taskloop simd
10  do i=1,10
11   j = j + 1
12  end do
13  !$omp end master taskloop simd
14end subroutine
15