Skip to content

Commit ba5cdbe

Browse files
authored
Fix typo verify_module in aot_compiler.c (#1836)
1 parent 2953614 commit ba5cdbe

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

core/iwasm/compilation/aot_compiler.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2597,7 +2597,7 @@ aot_compile_func(AOTCompContext *comp_ctx, uint32 func_index)
25972597
}
25982598

25992599
static bool
2600-
veriy_module(AOTCompContext *comp_ctx)
2600+
verify_module(AOTCompContext *comp_ctx)
26012601
{
26022602
char *msg = NULL;
26032603
bool ret;
@@ -2697,7 +2697,7 @@ aot_compile_wasm(AOTCompContext *comp_ctx)
26972697
the compilation process */
26982698
if (!comp_ctx->is_jit_mode) {
26992699
bh_print_time("Begin to verify LLVM module");
2700-
if (!veriy_module(comp_ctx)) {
2700+
if (!verify_module(comp_ctx)) {
27012701
return false;
27022702
}
27032703
}

0 commit comments

Comments
 (0)