Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
aviatesk committed Sep 4, 2023
1 parent 0b229d5 commit c07b641
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/abstractinterpret/abstractanalyzer.jl
Original file line number Diff line number Diff line change
Expand Up @@ -603,6 +603,11 @@ let # overload `inlining_policy`
@static if isdefined(CC, :InliningInfo)
sigs_ex = :(analyzer::AbstractAnalyzer, @nospecialize(src), iinfo::CC.InliningInfo)
args_ex = :(analyzer::AbstractInterpreter, src::Any, iinfo::CC.InliningInfo)
elseif VERSION v"1.11.0-DEV.377"
sigs_ex = :(analyzer::AbstractAnalyzer,
@nospecialize(src), @nospecialize(info::CC.CallInfo), stmt_flag::UInt32, mi::MethodInstance, argtypes::Argtypes)
args_ex = :(analyzer::AbstractInterpreter,
src::Any, info::CC.CallInfo, stmt_flag::UInt32, mi::MethodInstance, argtypes::Argtypes)
else
sigs_ex = :(analyzer::AbstractAnalyzer,
@nospecialize(src), @nospecialize(info::CC.CallInfo), stmt_flag::UInt8, mi::MethodInstance, argtypes::Argtypes)
Expand Down

0 comments on commit c07b641

Please sign in to comment.