mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-05-08 20:56:13 +00:00
Fix typo verify_module in aot_compiler.c (#1836)
This commit is contained in:
parent
2953614cb8
commit
ba5cdbee3a
|
@ -2597,7 +2597,7 @@ fail:
|
|||
}
|
||||
|
||||
static bool
|
||||
veriy_module(AOTCompContext *comp_ctx)
|
||||
verify_module(AOTCompContext *comp_ctx)
|
||||
{
|
||||
char *msg = NULL;
|
||||
bool ret;
|
||||
|
@ -2697,7 +2697,7 @@ aot_compile_wasm(AOTCompContext *comp_ctx)
|
|||
the compilation process */
|
||||
if (!comp_ctx->is_jit_mode) {
|
||||
bh_print_time("Begin to verify LLVM module");
|
||||
if (!veriy_module(comp_ctx)) {
|
||||
if (!verify_module(comp_ctx)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user