| ... | ... | @@ -195,6 +195,7 @@ pub const Feature = struct { |
| 195 | 195 | bulk_memory, |
| 196 | 196 | exception_handling, |
| 197 | 197 | extended_const, |
| 198 | half_precision, |
| 198 | 199 | multimemory, |
| 199 | 200 | multivalue, |
| 200 | 201 | mutable_globals, |
| ... | ... | @@ -219,6 +220,7 @@ pub const Feature = struct { |
| 219 | 220 | .bulk_memory => "bulk-memory", |
| 220 | 221 | .exception_handling => "exception-handling", |
| 221 | 222 | .extended_const => "extended-const", |
| 223 | .half_precision => "half-precision", |
| 222 | 224 | .multimemory => "multimemory", |
| 223 | 225 | .multivalue => "multivalue", |
| 224 | 226 | .mutable_globals => "mutable-globals", |
| ... | ... | @@ -251,6 +253,8 @@ pub const known_features = std.StaticStringMap(Feature.Tag).initComptime(.{ |
| 251 | 253 | .{ "bulk-memory", .bulk_memory }, |
| 252 | 254 | .{ "exception-handling", .exception_handling }, |
| 253 | 255 | .{ "extended-const", .extended_const }, |
| 256 | .{ "half-precision", .half_precision }, |
| 257 | .{ "multimemory", .multimemory }, |
| 254 | 258 | .{ "multivalue", .multivalue }, |
| 255 | 259 | .{ "mutable-globals", .mutable_globals }, |
| 256 | 260 | .{ "nontrapping-fptoint", .nontrapping_fptoint }, |