From 6c929ed0d14135a6b9e33df49ac28080d88e4de8 Mon Sep 17 00:00:00 2001 From: William Moses Date: Sat, 27 Jan 2024 11:32:31 -0500 Subject: [PATCH] Mark gensym as inactive --- src/compiler.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/compiler.jl b/src/compiler.jl index d42dbe05a4..7507e9af8f 100644 --- a/src/compiler.jl +++ b/src/compiler.jl @@ -144,6 +144,7 @@ const known_ops = Dict( end const nofreefns = Set{String}(( + "ijl_tagged_gensym", "jl_tagged_gensym", "ijl_array_ptr_copy", "jl_array_ptr_copy", "ijl_array_copy", "jl_array_copy", "ijl_get_nth_field_checked", "ijl_get_nth_field_checked", @@ -215,6 +216,7 @@ const nofreefns = Set{String}(( )) const inactivefns = Set{String}(( + "ijl_tagged_gensym", "jl_tagged_gensym", "jl_get_world_counter", "ijl_get_world_counter", "memhash32_seed", "memhash_seed", "ijl_module_parent", "jl_module_parent",