Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions Compiler/src/abstractinterpretation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3485,9 +3485,13 @@ function refine_partial_type(@nospecialize t)
return t
end

abstract_eval_nonlinearized_foreigncall_name(interp::AbstractInterpreter, e, sstate::StatementState, sv::IRInterpretationState) = nothing
abstract_eval_nonlinearized_foreigncall_name(
::AbstractInterpreter, @nospecialize(e), ::StatementState, ::IRInterpretationState
) = nothing

function abstract_eval_nonlinearized_foreigncall_name(interp::AbstractInterpreter, e, sstate::StatementState, sv::AbsIntState)
function abstract_eval_nonlinearized_foreigncall_name(
interp::AbstractInterpreter, @nospecialize(e), sstate::StatementState, sv::InferenceState
)
if isexpr(e, :call)
n = length(e.args)
argtypes = Vector{Any}(undef, n)
Expand Down