-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Closed
Labels
latencyLatencyLatency
Description
After running the JuliaInterpreter tests, I get this:
julia> m = first(methods(Base.append_any))
append_any(xs...) in Base at essentials.jl:663
julia> m.specializations.func
MethodInstance for append_any(::Vararg{Any,N} where N)
julia> m.specializations.next.func
MethodInstance for append_any(::Tuple{Any}, ::Vararg{Any,N} where N)
julia> m.specializations.next.next.func
MethodInstance for append_any(::Any, ::Vararg{Any,N} where N)
This is despite the intention to avoid specialization:
Lines 662 to 663 in b073bb5
function append_any(xs...) | |
@nospecialize |
function append_any(@nospecialize xs...)
Metadata
Metadata
Assignees
Labels
latencyLatencyLatency