
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>
11 lines
243 B
Fortran
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
|