15 lines · plain
1! This test checks lowering of OpenMP parallel master taskloop simd Directive.2 3! RUN: %not_todo_cmd bbc -emit-fir -fopenmp -o - %s 2>&1 | FileCheck %s4! RUN: %not_todo_cmd %flang_fc1 -emit-fir -fopenmp -o - %s 2>&1 | FileCheck %s5 6subroutine test_parallel_master_taskloop_simd7 integer :: i, j = 18 !CHECK: not yet implemented: Composite TASKLOOP SIMD9 !$omp parallel master taskloop simd 10 do i=1,1011 j = j + 112 end do13 !$omp end parallel master taskloop simd14end subroutine15