diff options
Diffstat (limited to 'src/binaryen-c.cpp')
-rw-r--r-- | src/binaryen-c.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/binaryen-c.cpp b/src/binaryen-c.cpp index ebb8bb694..d098810e2 100644 --- a/src/binaryen-c.cpp +++ b/src/binaryen-c.cpp @@ -1936,7 +1936,7 @@ int BinaryenModuleValidate(BinaryenModuleRef module) { Module* wasm = (Module*)module; // TODO add feature selection support to C API - FeatureSet features = Feature::Atomics; + FeatureSet features = FeatureSet::All; return WasmValidator().validate(*wasm, features) ? 1 : 0; } |