Skip to content

Commit ffc59c8

Browse files
authored
make a global variable const (#1139)
1 parent 174d788 commit ffc59c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/auditor/instruction_set.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const instruction_categories = JSON.parsefile(joinpath(@__DIR__, "instructions.j
55
dicttype=Dict{String,Vector{String}})
66

77
# Turn instructions "inside out", so e.g. we have "vzeroall" => "avx"
8-
mnemonics_by_category = Dict(
8+
const mnemonics_by_category = Dict(
99
inst => cat for (cat, insts) in instruction_categories for inst in insts
1010
)
1111

0 commit comments

Comments
 (0)