bolt/deps/llvm-18.1.8/flang/test/Lower/OpenMP/Todo/omp-declarative-allocate.f90
2025-02-14 19:21:04 +01:00

10 lines
247 B
Fortran

! This test checks lowering of OpenMP allocate Directive.
// RUN: not flang-new -fc1 -emit-fir -fopenmp %s 2>&1 | FileCheck %s
program main
integer :: x, y
// CHECK: not yet implemented: OpenMPDeclarativeAllocate
!$omp allocate(x, y)
end