llvm/flang/test/Lower/OpenMP/Todo/omp-do-simd-linear.f90

! This test checks lowering of OpenMP do simd linear() pragma

! 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 testDoSimdLinear(int_array)
        integer :: int_array(*)
!CHECK: not yet implemented: Unhandled clause LINEAR in SIMD construct
!$omp do simd linear(int_array)
        do index_ = 1, 10
        end do
!$omp end do simd

end subroutine testDoSimdLinear