llvm-project/flang/test/Lower/OpenMP/Todo/omp-declarative-allocate.f90
Brad Richardson 06eb10dadf
[flang][driver] rename flang-new to flang (#110023)
This does a global rename from `flang-new` to `flang`. I also
removed/changed any TODOs that I found related to making this change.

---------

Co-authored-by: H. Vetinari <h.vetinari@gmx.com>
Co-authored-by: Andrzej Warzynski <andrzej.warzynski@arm.com>
2024-10-10 09:26:04 +01:00

11 lines
243 B
Fortran

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