Break circular dependency between FIR dialect and utilities
[llvm-project.git] / flang / test / Lower / OpenMP / Todo / omp-declare-simd.f90
blobc6a0a8f2cd0d22db8a6a8dacc3c5aabe806da7f7
1 ! This test checks lowering of OpenMP declare simd Directive.
3 // RUN: not flang-new -fc1 -emit-fir -fopenmp %s 2>&1 | FileCheck %s
5 subroutine sub(x, y)
6 real, intent(inout) :: x, y
8 // CHECK: not yet implemented: OpenMPDeclareSimdConstruct
9 !$omp declare simd(sub) aligned(x)
10 x = 3.14 + y
11 end