Skip to content

Commit f902584

Browse files
authored
small fixes to ccall lazy library path change (#37123) (#37383)
1 parent 54c6e22 commit f902584

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

doc/src/manual/calling-c-and-fortran-code.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -883,8 +883,8 @@ be computed at run time. To handle such cases, the library component of a `(name
883883
specification can be a function call, e.g. `(:dgemm_, find_blas())`. The call expression will
884884
be executed when the `ccall` itself is executed. However, it is assumed that the library
885885
location does not change once it is determined, so the result of the call can be cached and
886-
reused. Therefore, the number of times the expression executes is undefined, and returning
887-
different values for multiple calls results in undefined behavior.
886+
reused. Therefore, the number of times the expression executes is unspecified, and returning
887+
different values for multiple calls results in unspecified behavior.
888888

889889
If even more flexibility is needed, it is possible
890890
to use computed values as function names by staging through [`eval`](@ref) as follows:

src/ccall.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,7 @@ static Value *runtime_sym_lookup(
166166
gvname += f_name;
167167
gvname += "_";
168168
gvname += std::to_string(globalUnique++);
169-
Module *M = ctx.emission_context.shared_module(jl_LLVMContext);
170-
llvmgv = new GlobalVariable(*M, T_pvoidfunc, false,
169+
llvmgv = new GlobalVariable(*jl_Module, T_pvoidfunc, false,
171170
GlobalVariable::ExternalLinkage,
172171
Constant::getNullValue(T_pvoidfunc), gvname);
173172
}

0 commit comments

Comments
 (0)