Enable the multi-value proposal by default (#1667)
This was merged into the wasm spec upstream in WebAssembly/spec#1145, so let's follow the spec and enable it by default here as well!
This commit is contained in:
@@ -61,10 +61,7 @@ wasm_trap_t* closure_callback(
|
||||
int main(int argc, const char* argv[]) {
|
||||
// Initialize.
|
||||
printf("Initializing...\n");
|
||||
wasm_config_t *config = wasm_config_new();
|
||||
assert(config != NULL);
|
||||
wasmtime_config_wasm_multi_value_set(config, true);
|
||||
wasm_engine_t* engine = wasm_engine_new_with_config(config);
|
||||
wasm_engine_t* engine = wasm_engine_new();
|
||||
wasm_store_t* store = wasm_store_new(engine);
|
||||
|
||||
// Load our input file to parse it next
|
||||
|
||||
Reference in New Issue
Block a user