Skip to content

Commit

Permalink
enable module verification for jit as well for now
Browse files Browse the repository at this point in the history
  • Loading branch information
yamt committed Jun 6, 2023
1 parent c768511 commit c37ba45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/iwasm/compilation/aot_compiler.c
Original file line number Diff line number Diff line change
Expand Up @@ -2697,7 +2697,7 @@ aot_compile_wasm(AOTCompContext *comp_ctx)

/* Disable LLVM module verification for jit mode to speedup
the compilation process */
if (!comp_ctx->is_jit_mode) {
if (!comp_ctx->is_jit_mode || 1) {
bh_print_time("Begin to verify LLVM module");
if (!verify_module(comp_ctx)) {
return false;
Expand Down

0 comments on commit c37ba45

Please sign in to comment.