[Openmp-commits] [PATCH] D114537: [OpenMP] libomp: fix Fortran header: lines exceeded 72-char length
Andrey Churbanov via Phabricator via Openmp-commits
openmp-commits at lists.llvm.org
Wed Nov 24 07:13:17 PST 2021
AndreyChurbanov created this revision.
AndreyChurbanov added reviewers: hbae, jlpeyton.
AndreyChurbanov added a project: OpenMP.
Herald added subscribers: guansong, yaxunl.
AndreyChurbanov requested review of this revision.
Herald added a reviewer: jdoerfert.
Herald added subscribers: openmp-commits, sstefan1.
Added line continuation to two long lines in Fortran header.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D114537
Files:
openmp/runtime/src/include/omp_lib.h.var
Index: openmp/runtime/src/include/omp_lib.h.var
===================================================================
--- openmp/runtime/src/include/omp_lib.h.var
+++ 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
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D114537.389490.patch
Type: text/x-patch
Size: 1220 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20211124/4c070526/attachment.bin>
More information about the Openmp-commits
mailing list