From d6fc18e19784eba59eea2bf09244781e9b0f5e88 Mon Sep 17 00:00:00 2001 From: Zhenwei Jin <109658203+kylo5aby@users.noreply.github.com> Date: Thu, 10 Jul 2025 08:27:42 +0800 Subject: [PATCH] enable aux stack frame for aot compiler fuzz test (#4462) --- tests/fuzz/wasm-mutator-fuzz/aot-compiler/aot_compiler_fuzz.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/fuzz/wasm-mutator-fuzz/aot-compiler/aot_compiler_fuzz.cc b/tests/fuzz/wasm-mutator-fuzz/aot-compiler/aot_compiler_fuzz.cc index 89b4bad0a..c8ec4c0d5 100644 --- a/tests/fuzz/wasm-mutator-fuzz/aot-compiler/aot_compiler_fuzz.cc +++ b/tests/fuzz/wasm-mutator-fuzz/aot-compiler/aot_compiler_fuzz.cc @@ -58,6 +58,7 @@ LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) option.enable_simd = true; option.enable_ref_types = true; option.enable_gc = true; + option.aux_stack_frame_type = AOT_STACK_FRAME_TYPE_STANDARD; comp_data = aot_create_comp_data(module, option.target_arch, option.enable_gc);