From ba5cdbee3ab09d48d1f415a4c0d66e856d98c74e Mon Sep 17 00:00:00 2001 From: tonibofarull Date: Mon, 26 Dec 2022 05:24:23 +0100 Subject: [PATCH] Fix typo verify_module in aot_compiler.c (#1836) --- core/iwasm/compilation/aot_compiler.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/iwasm/compilation/aot_compiler.c b/core/iwasm/compilation/aot_compiler.c index 61e21613..925371b1 100644 --- a/core/iwasm/compilation/aot_compiler.c +++ b/core/iwasm/compilation/aot_compiler.c @@ -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; } }