File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,9 @@ Base.string(options::LowerPTLSPassOptions) = options.imaging ? "<imaging>" : ""
25
25
@module_pass " LowerPTLSPass" LowerPTLSPass LowerPTLSPassOptions
26
26
27
27
@function_pass " DemoteFloat16" DemoteFloat16Pass
28
+ @static if VERSION < v " 1.12.0-DEV.1390"
28
29
@function_pass " CombineMulAdd" CombineMulAddPass
30
+ end
29
31
@function_pass " LateLowerGCFrame" LateLowerGCPass
30
32
@function_pass " AllocOpt" AllocOptPass
31
33
@function_pass " PropagateJuliaAddrspaces" PropagateJuliaAddrspacesPass
Original file line number Diff line number Diff line change 349
349
add! (fpm, SimplifyCFGPass (; aggressiveSimplifyCFGOptions... ))
350
350
end
351
351
add! (mpm, NewPMFunctionPassManager ()) do fpm
352
- add! (fpm, CombineMulAddPass ())
352
+ if VERSION < v " 1.12.0-DEV.1390"
353
+ add! (fpm, CombineMulAddPass ())
354
+ end
353
355
add! (fpm, DivRemPairsPass ())
354
356
end
355
357
add! (mpm, NewPMFunctionPassManager ()) do fpm
You can’t perform that action at this time.
0 commit comments