Break circular dependency between FIR dialect and utilities
[llvm-project.git] / flang / test / Lower / OpenMP / Todo / omp-declarative-allocate.f90
blobf02884e5e92f3827d3c33150fd26f59ca7b74456
1 ! This test checks lowering of OpenMP allocate Directive.
3 // RUN: not flang-new -fc1 -emit-fir -fopenmp %s 2>&1 | FileCheck %s
5 program main
6 integer :: x, y
8 // CHECK: not yet implemented: OpenMPDeclarativeAllocate
9 !$omp allocate(x, y)
10 end