[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
This commit is contained in:
AndreyChurbanov 2021-12-10 16:23:21 +03:00
parent 77e9d36a78
commit 1031e43052
1 changed files with 4 additions and 2 deletions

View File

@ -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