forked from OSchip/llvm-project
[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:
parent
77e9d36a78
commit
1031e43052
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue