Skip to content

Commit

Permalink
fixup! only process inferred mi
Browse files Browse the repository at this point in the history
  • Loading branch information
vchuravy committed Jul 16, 2024
1 parent 569f7a1 commit 3c80a5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jlgen.jl
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@ function compile_method_instance(@nospecialize(job::CompilerJob), compiled::IdDi
# Collect the deferred edges
outstanding = Any[]
for mi in method_instances
!haskey(mi, compiled) && continue # Equivalent to ci_cache_lookup == nothing
!haskey(compiled, mi) && continue # Equivalent to ci_cache_lookup == nothing
ci = compiled[mi].ci
@static if VERSION >= v"1.11.0-"
edges = CC.traverse_analysis_results(ci) do @nospecialize result
Expand Down

0 comments on commit 3c80a5d

Please sign in to comment.