[flang-commits] [flang] [llvm] [openmp] [OpenMP][Flang] Add integer-kind wrappers to omp_lib (PR #213505)
Sairudra More via flang-commits
flang-commits at lists.llvm.org
Sun Aug 2 22:03:45 PDT 2026
================
@@ -1150,6 +1171,69 @@
end interface
+ ! Generic interfaces for multiple integer kinds
+ interface omp_set_num_threads
+ module procedure omp_set_num_threads_i1, omp_set_num_threads_i2, omp_set_num_threads_i4, omp_set_num_threads_i8
+ end interface omp_set_num_threads
+ interface omp_set_max_active_levels
+ module procedure omp_set_max_active_levels_i1, omp_set_max_active_levels_i2, omp_set_max_active_levels_i4, omp_set_max_active_levels_i8
----------------
Saieiei wrote:
This and eight other added `module procedure` lines exceed 132 columns. With the existing GNU build flags, the merge-base module compiles, but this head fails with nine line-truncation errors on gfortran 12 and 13. Could these lists be wrapped using `&` continuations?
https://github.com/llvm/llvm-project/pull/213505
More information about the flang-commits
mailing list