[flang-commits] [flang] [flang][Semantics][OpenMP] set intrinsic attr for reductions (PR #85114)

Kiran Chandramohan via flang-commits flang-commits at lists.llvm.org
Thu Mar 14 05:40:20 PDT 2024


kiranchandramohan wrote:

Can you check whether the following renaming works correctly?

```
module m1
  intrinsic max
end module m1
program main
  use m1, ren=>max
  n=0
!$omp parallel do reduction(ren:n)
  print *, "par"
!$omp end parallel do
end program main
```

Could you add a `fdebug-dump-symbols`  or a `fdebug-unparse-with-symbols` test in Semantics/OpenMP?

https://github.com/llvm/llvm-project/pull/85114


More information about the flang-commits mailing list