Skip to content
Merged
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
4 changes: 4 additions & 0 deletions src/compiler/optimize.jl
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,10 @@ function addJuliaLegalizationPasses!(mpm::LLVM.NewPMPassManager, lower_intrinsic
if VERSION >= v"1.11.0-DEV.208"
add!(fpm, FinalLowerGCPass())
end
if VERSION >= v"1.13.0-DEV.321"
# after LateLowerGCPass so that all IPO is valid
add!(fpm, ExpandAtomicModifyPass())
end
end
if VERSION < v"1.11.0-DEV.208"
add!(mpm, FinalLowerGCPass())
Expand Down
Loading