Skip to content

Commit 2944591

Browse files
authored
Adapt to latest binding change in 1.12 (#681)
1 parent 5a14f02 commit 2944591

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/validation.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,8 @@ function check_ir!(job, errors::Vector{IRError}, inst::LLVM.CallInst)
238238
@safe_debug "Decoding arguments to jl_get_binding_or_error failed" inst bb=LLVM.parent(inst)
239239
push!(errors, (DELAYED_BINDING, bt, nothing))
240240
end
241-
elseif fn == "jl_reresolve_binding_value_seqcst" || fn == "ijl_reresolve_binding_value_seqcst"
241+
elseif fn == "jl_reresolve_binding_value_seqcst" || fn == "ijl_reresolve_binding_value_seqcst" ||
242+
fn == "jl_get_binding_value_seqcst" || fn == "ijl_get_binding_value_seqcst"
242243
try
243244
# pry the binding from the IR
244245
expr = arguments(inst)[1]::ConstantExpr

0 commit comments

Comments
 (0)