1
Fork 0

Add sign-ext target feature to the WASM target

This commit is contained in:
dAxpeDDa 2022-07-23 16:58:10 +02:00
parent 2e43d068ce
commit a5de4eeafc
No known key found for this signature in database
GPG key ID: 43D62A3EA388E46F

View file

@ -249,6 +249,7 @@ const WASM_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[
("bulk-memory", Some(sym::wasm_target_feature)),
("mutable-globals", Some(sym::wasm_target_feature)),
("reference-types", Some(sym::wasm_target_feature)),
("sign-ext", Some(sym::wasm_target_feature)),
];
const BPF_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[("alu32", Some(sym::bpf_target_feature))];