[Openmp-commits] [openmp] 1031e43 - [OpenMP] libomp: fix Fortran header: lines exceeded 72-char length
via Openmp-commits
openmp-commits at lists.llvm.org
Fri Dec 10 05:23:30 PST 2021
Author: AndreyChurbanov
Date: 2021-12-10T16:23:21+03:00
New Revision: 1031e430521407241ca97affc80001af373c2fc5
URL: https://github.com/llvm/llvm-project/commit/1031e430521407241ca97affc80001af373c2fc5
DIFF: https://github.com/llvm/llvm-project/commit/1031e430521407241ca97affc80001af373c2fc5.diff
LOG: [OpenMP] libomp: fix Fortran header: lines exceeded 72-char length
Added line continuation to two long lines in Fortran header.
Differential Revision: https://reviews.llvm.org/D114537
Added:
Modified:
openmp/runtime/src/include/omp_lib.h.var
Removed:
################################################################################
diff --git a/openmp/runtime/src/include/omp_lib.h.var b/openmp/runtime/src/include/omp_lib.h.var
index a1d0c1f977706..a8287beee66c7 100644
--- a/openmp/runtime/src/include/omp_lib.h.var
+++ b/openmp/runtime/src/include/omp_lib.h.var
@@ -769,7 +769,8 @@
integer(omp_allocator_handle_kind), value :: allocator
end function omp_calloc
- function omp_aligned_calloc(alignment, nmemb, size, allocator) bind(c)
+ function omp_aligned_calloc(alignment, nmemb, size, &
+ & allocator) bind(c)
use omp_lib_kinds
use, intrinsic :: iso_c_binding, only : c_ptr, c_size_t
type(c_ptr) omp_aligned_calloc
@@ -777,7 +778,8 @@
integer(omp_allocator_handle_kind), value :: allocator
end function omp_aligned_calloc
- function omp_realloc(ptr, size, allocator, free_allocator) bind(c)
+ function omp_realloc(ptr, size, allocator, &
+ & free_allocator) bind(c)
use omp_lib_kinds
use, intrinsic :: iso_c_binding, only : c_ptr, c_size_t
type(c_ptr) omp_realloc
More information about the Openmp-commits
mailing list