mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 06:56:44 +00:00

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>
12 lines
297 B
Fortran
12 lines
297 B
Fortran
! This test checks lowering of OpenMP declare simd Directive.
|
|
|
|
// RUN: not flang -fc1 -emit-fir -fopenmp %s 2>&1 | FileCheck %s
|
|
|
|
subroutine sub(x, y)
|
|
real, intent(inout) :: x, y
|
|
|
|
// CHECK: not yet implemented: OpenMPDeclareSimdConstruct
|
|
!$omp declare simd(sub) aligned(x)
|
|
x = 3.14 + y
|
|
end
|