Skip to content

Commit 8a3d916

Browse files
committed
Merge pull request #11148 from ihnorton/typeinfswap
Add jl_set_typeinf_func (replaces jl_enable_inference)
2 parents 7661496 + 7f52e1b commit 8a3d916

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

base/inference.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3291,4 +3291,4 @@ end
32913291

32923292
#tfunc(f,t) = methods(f,t)[1].func.code.tfunc
32933293

3294-
ccall(:jl_enable_inference, Void, ())
3294+
ccall(:jl_set_typeinf_func, Void, (Any,), typeinf_ext)

src/init.c

+4-3
Original file line numberDiff line numberDiff line change
@@ -1246,10 +1246,11 @@ DLLEXPORT void julia_save()
12461246

12471247
jl_function_t *jl_typeinf_func=NULL;
12481248

1249-
DLLEXPORT void jl_enable_inference(void)
1249+
DLLEXPORT void jl_set_typeinf_func(jl_value_t* f)
12501250
{
1251-
jl_typeinf_func = (jl_function_t*)jl_get_global(jl_base_module,
1252-
jl_symbol("typeinf_ext"));
1251+
if (!jl_is_function(f))
1252+
jl_error("jl_set_typeinf_func must set a jl_function_t*");
1253+
jl_typeinf_func = (jl_function_t*)f;
12531254
}
12541255

12551256
static jl_value_t *core(char *name)

0 commit comments

Comments
 (0)