authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-04-30 15:23:37-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-05-08 19:37:29-07:00
log7663da238e45a747420534156f1147e1338dfc4c
tree69ce976a264615496529a41acc244c43c7aa8bc2
parent5f0a2f2a0cc4354768cd1e60b78dc1d5e776fd25

link.Wasm: add missing CPU feature


1 files changed, 2 insertions(+), 0 deletions(-)

src/link/Wasm/types.zig+2
...@@ -195,6 +195,7 @@ pub const Feature = struct {...@@ -195,6 +195,7 @@ pub const Feature = struct {
195 bulk_memory,195 bulk_memory,
196 exception_handling,196 exception_handling,
197 extended_const,197 extended_const,
198 multimemory,
198 multivalue,199 multivalue,
199 mutable_globals,200 mutable_globals,
200 nontrapping_fptoint,201 nontrapping_fptoint,
...@@ -218,6 +219,7 @@ pub const Feature = struct {...@@ -218,6 +219,7 @@ pub const Feature = struct {
218 .bulk_memory => "bulk-memory",219 .bulk_memory => "bulk-memory",
219 .exception_handling => "exception-handling",220 .exception_handling => "exception-handling",
220 .extended_const => "extended-const",221 .extended_const => "extended-const",
222 .multimemory => "multimemory",
221 .multivalue => "multivalue",223 .multivalue => "multivalue",
222 .mutable_globals => "mutable-globals",224 .mutable_globals => "mutable-globals",
223 .nontrapping_fptoint => "nontrapping-fptoint",225 .nontrapping_fptoint => "nontrapping-fptoint",