[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
Fri Dec 10 05:23:41 PST 2021


This revision was automatically updated to reflect the committed changes.
Closed by commit rG1031e4305214: [OpenMP] libomp: fix Fortran header: lines exceeded 72-char length (authored by AndreyChurbanov).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D114537/new/

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.393452.patch
Type: text/x-patch
Size: 1220 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20211210/10d91c23/attachment.bin>


More information about the Openmp-commits mailing list