From 6b6e89d0c8feeead83d6d83fa94e17fc9f75e0f8 Mon Sep 17 00:00:00 2001 From: Thomas Lively <7121787+tlively@users.noreply.github.com> Date: Mon, 3 Dec 2018 18:26:16 -0800 Subject: Feature options (#1797) Add feature flags and struct interface. Default feature set has all feature enabled. --- src/tools/wasm-as.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tools/wasm-as.cpp') diff --git a/src/tools/wasm-as.cpp b/src/tools/wasm-as.cpp index 46885dec0..c504c2a81 100644 --- a/src/tools/wasm-as.cpp +++ b/src/tools/wasm-as.cpp @@ -93,7 +93,7 @@ int main(int argc, const char *argv[]) { if (options.extra["validate"] != "none") { if (options.debug) std::cerr << "Validating..." << std::endl; - if (!wasm::WasmValidator().validate(wasm, Feature::All, + if (!wasm::WasmValidator().validate(wasm, FeatureSet::All, WasmValidator::Globally | (options.extra["validate"] == "web" ? WasmValidator::Web : 0))) { WasmPrinter::printModule(&wasm); Fatal() << "Error: input module is not valid.\n"; -- cgit v1.2.3