Skip to content

Commit

Permalink
fixup! Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
vchuravy committed Jun 12, 2024
1 parent 4bb8bd3 commit 6cd6d52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler/interpreter.jl
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Core.Compiler.get_inference_cache(interp::EnzymeInterpreter) = interp.local_cach
@static if HAS_INTEGRATED_CACHE
Core.Compiler.cache_owner(interp::EnzymeInterpreter) = interp.token
else
Core.Compiler.code_cache(interp::EnzymeInterpreter) = WorldView(interp.cache, interp.world)
Core.Compiler.code_cache(interp::EnzymeInterpreter) = WorldView(interp.code_cache, interp.world)
end

# No need to do any locking since we're not putting our results into the runtime cache
Expand Down

0 comments on commit 6cd6d52

Please sign in to comment.