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
375 B
Fortran
11 lines
375 B
Fortran
! This test checks lowering of OpenMP declare reduction Directive.
|
|
|
|
// RUN: not flang -fc1 -emit-fir -fopenmp %s 2>&1 | FileCheck %s
|
|
|
|
subroutine declare_red()
|
|
integer :: my_var
|
|
// CHECK: not yet implemented: OpenMPDeclareReductionConstruct
|
|
!$omp declare reduction (my_red : integer : omp_out = omp_in) initializer (omp_priv = 0)
|
|
my_var = 0
|
|
end subroutine declare_red
|