File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -18,13 +18,13 @@ jobs:
18
18
strategy :
19
19
fail-fast : false
20
20
matrix :
21
- version : ['1.10', 'pre ', 'nightly']
21
+ version : ['1.10', '1.11 ', 'nightly']
22
22
os : [ubuntu-latest, macOS-latest, windows-latest]
23
23
arch : [x64]
24
24
llvm_args : ['']
25
25
include :
26
26
# starting with Julia 1.10, we can enable opaque pointers
27
- # from Juila 1.12 on, this is the default.
27
+ # from Julia 1.12 on, this is the default.
28
28
- version : ' 1.10'
29
29
os : ' ubuntu-latest'
30
30
arch : ' x64'
@@ -37,15 +37,15 @@ jobs:
37
37
os : ' windows-latest'
38
38
arch : ' x64'
39
39
llvm_args : ' --opaque-pointers'
40
- - version : ' pre '
40
+ - version : ' 1.11 '
41
41
os : ' ubuntu-latest'
42
42
arch : ' x64'
43
43
llvm_args : ' --opaque-pointers'
44
- - version : ' pre '
44
+ - version : ' 1.11 '
45
45
os : ' macOS-latest'
46
46
arch : ' x64'
47
47
llvm_args : ' --opaque-pointers'
48
- - version : ' pre '
48
+ - version : ' 1.11 '
49
49
os : ' windows-latest'
50
50
arch : ' x64'
51
51
llvm_args : ' --opaque-pointers'
Original file line number Diff line number Diff line change 266
266
function buildCleanupPipeline (mpm, @nospecialize (job:: CompilerJob ), opt_level)
267
267
if opt_level >= 2
268
268
add! (mpm, NewPMFunctionPassManager ()) do fpm
269
- add! (fpm, CombineMulAddPass ())
269
+ if VERSION < v " 1.12.0-DEV.1390"
270
+ add! (fpm, CombineMulAddPass ())
271
+ end
270
272
add! (fpm, DivRemPairsPass ())
271
273
end
272
274
end
You can’t perform that action at this time.
0 commit comments