Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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 .github/workflows/Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
version: ['1.10', '1.11', 'nightly']
version: ['1.10', '1.11', '1.12-nightly', 'nightly']
os: [ubuntu-latest, macOS-latest, windows-latest]
arch: [x64]
llvm_args: ['']
Expand Down
2 changes: 1 addition & 1 deletion src/jlgen.jl
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ function compile_method_instance(@nospecialize(job::CompilerJob))
if VERSION < v"1.12.0-DEV.1667"
cgparams = (; lookup = Base.unsafe_convert(Ptr{Nothing}, lookup_cb), cgparams... )
end
if VERSION > v"1.13.0-DEV.285"
if VERSION >= v"1.12.0-DEV.2126"
cgparams = (; force_emit_all = true , cgparams...)
end
params = Base.CodegenParams(; cgparams...)
Expand Down
Loading