From b1fc53b9537099d81256800f691a233a02cfdba2 Mon Sep 17 00:00:00 2001 From: Wenyong Huang Date: Sun, 12 Jan 2025 12:03:56 +0800 Subject: [PATCH] fix typo --- core/iwasm/common/wasm_runtime_common.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/core/iwasm/common/wasm_runtime_common.c b/core/iwasm/common/wasm_runtime_common.c index 29c120b54..df2c2c5ec 100644 --- a/core/iwasm/common/wasm_runtime_common.c +++ b/core/iwasm/common/wasm_runtime_common.c @@ -4920,9 +4920,8 @@ wasm_runtime_invoke_native(WASMExecEnv *exec_env, void *func_ptr, #if WASM_ENABLE_GC == 0 && WASM_ENABLE_REF_TYPES != 0 bool is_aot_func = (NULL == signature); #endif -#if !defined(BUILD_TARGET_RISCV32_ILP32) !defined( \ - BUILD_TARGET_LOONGARCH32_ILP32) \ - && !defined(BUILD_TARGET_ARC) +#if !defined(BUILD_TARGET_RISCV32_ILP32) \ + && !defined(BUILD_TARGET_LOONGARCH32_ILP32) && !defined(BUILD_TARGET_ARC) uint32 *fps; int n_fps = 0; #else