wasm_create_exec_env_and_call_function: Remove "enable_debug" argument (#1398)

No one uses the `enable_debug` argument after the removal of
wasm_runtime_create_exec_env_and_call_wasm.
This commit is contained in:
YAMAMOTO Takashi
2022-08-19 21:28:10 +09:00
committed by GitHub
parent a517bb249a
commit 1fc01fab4b
2 changed files with 10 additions and 21 deletions

View File

@ -334,8 +334,7 @@ wasm_call_function(WASMExecEnv *exec_env, WASMFunctionInstance *function,
bool
wasm_create_exec_env_and_call_function(WASMModuleInstance *module_inst,
WASMFunctionInstance *function,
unsigned argc, uint32 argv[],
bool enable_debug);
unsigned argc, uint32 argv[]);
bool
wasm_create_exec_env_singleton(WASMModuleInstance *module_inst);