Revert "[wasm-shape] No need to set default runnint mode"

This reverts commit fa484fac08a868e885b3252522668824f0f0fe71.
This commit is contained in:
Behdad Esfahbod 2023-02-25 11:07:31 -07:00
parent d894a10699
commit 65f7bac73c
1 changed files with 5 additions and 0 deletions

View File

@ -62,6 +62,11 @@ init_wasm ()
RuntimeInitArgs init_args;
memset (&init_args, 0, sizeof (RuntimeInitArgs));
if (wasm_runtime_is_running_mode_supported (Mode_LLVM_JIT))
init_args.running_mode = Mode_LLVM_JIT;
else if (wasm_runtime_is_running_mode_supported (Mode_Fast_JIT))
init_args.running_mode = Mode_Fast_JIT;
init_args.mem_alloc_type = Alloc_With_Allocator;
init_args.mem_alloc_option.allocator.malloc_func = (void *) hb_malloc;
init_args.mem_alloc_option.allocator.realloc_func = (void *) hb_realloc;