Skip to content

Commit ade4485

Browse files
authored
Bump LLVM.jl. (#690)
1 parent edf2aa2 commit ade4485

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
2020
[compat]
2121
ExprTools = "0.1"
2222
InteractiveUtils = "1"
23-
LLVM = "9.1"
23+
LLVM = "9.3"
2424
Libdl = "1"
2525
Logging = "1"
2626
PrecompileTools = "1"

src/optim.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ function buildNewPMPipeline!(mpm, @nospecialize(job::CompilerJob), opt_level)
4646
end
4747

4848
const BasicSimplifyCFGOptions =
49-
(; convert_switch_range_to_icmp=true,
50-
convert_switch_to_lookup_table=true,
51-
forward_switch_cond_to_phi=true,
49+
(; switch_range_to_icmp=true,
50+
switch_to_lookup=true,
51+
forward_switch_cond=true,
5252
)
5353
const AggressiveSimplifyCFGOptions =
54-
(; convert_switch_range_to_icmp=true,
55-
convert_switch_to_lookup_table=true,
56-
forward_switch_cond_to_phi=true,
54+
(; switch_range_to_icmp=true,
55+
switch_to_lookup=true,
56+
forward_switch_cond=true,
5757
# These mess with loop rotation, so only do them after that
5858
hoist_common_insts=true,
5959
# Causes an SRET assertion error in late-gc-lowering

0 commit comments

Comments
 (0)