brintos

brintos / llvm-project-archived public Read only

0
0
Text · 451 B · e928afd Raw
15 lines · plain
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 %s4! RUN: %not_todo_cmd %flang_fc1 -emit-fir -fopenmp -o - %s 2>&1 | FileCheck %s5 6subroutine test_master_taskloop_simd()7  integer :: i, j = 18  !CHECK: not yet implemented: Composite TASKLOOP SIMD9  !$omp master taskloop simd 10  do i=1,1011   j = j + 112  end do13  !$omp end master taskloop simd14end subroutine15