Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ NVPTX_LLVM_Backend_jll = "ef6e0fe3-e6ef-59c0-bde6-4989574699e0"

[compat]
AMDGPU_LLVM_Backend_jll = "22"
CompilerCaching = "0.3"
CompilerCaching = "0.4"
ExprTools = "0.1"
Highlights = "0.6"
InteractiveUtils = "1"
Expand Down
4 changes: 2 additions & 2 deletions src/jlgen.jl
Original file line number Diff line number Diff line change
Expand Up @@ -423,9 +423,9 @@ function compile_method_instance(@nospecialize(job::CompilerJob))
interp.code_cache
end

# gather (CI, CodeInfo) pairs for jl_emit_native (1.12+)
# gather (CI, CodeInfo) pairs for jl_emit_native (1.12+).
codeinfo_pairs = if VERSION >= v"1.12.0-DEV.1823" && root_ci !== nothing
CompilerCaching.get_codeinfos(root_ci)
CompilerCaching.get_codeinfos(interp, root_ci)
else
nothing
end
Expand Down