Skip to content

Commit 932fe3b

Browse files
committed
fix call to jl_match_method
1 parent 2a21e3f commit 932fe3b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

base/inference.jl

+2-3
Original file line numberDiff line numberDiff line change
@@ -3125,9 +3125,8 @@ function inlineable(f::ANY, ft::ANY, e::Expr, atypes::Vector{Any}, sv::Inference
31253125
else
31263126
invoke_data = invoke_data::InvokeData
31273127
method = invoke_data.entry.func
3128-
(metharg, methsp) = ccall(:jl_match_method, Ref{SimpleVector},
3129-
(Any, Any, Any),
3130-
atype_unlimited, method.sig, method.tvars)
3128+
(metharg, methsp) = ccall(:jl_match_method, Ref{SimpleVector}, (Any, Any),
3129+
atype_unlimited, method.sig)
31313130
methsp = methsp::SimpleVector
31323131
end
31333132
# check whether call can be inlined to just a quoted constant value

0 commit comments

Comments
 (0)