From 595a2b3a5278e53b7a72e77bc1ec41b195506e34 Mon Sep 17 00:00:00 2001 From: Maks Litskevich Date: Tue, 28 Jan 2025 13:02:48 +0000 Subject: [PATCH] Update core/iwasm/interpreter/wasm_opcode.h Co-authored-by: Marcin Kolny --- core/iwasm/interpreter/wasm_opcode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/iwasm/interpreter/wasm_opcode.h b/core/iwasm/interpreter/wasm_opcode.h index 55c94b031..ceb75f26a 100644 --- a/core/iwasm/interpreter/wasm_opcode.h +++ b/core/iwasm/interpreter/wasm_opcode.h @@ -790,7 +790,7 @@ typedef enum WASMAtomicEXTOpcode { #endif #define SET_GOTO_TABLE_ELEM(opcode) [opcode] = HANDLE_OPCODE(opcode) -#if (WASM_ENABLE_JIT != 0 || (WASM_ENABLE_FAST_INTERP != 0)) \ +#if (WASM_ENABLE_JIT != 0 || WASM_ENABLE_FAST_INTERP != 0) \ && WASM_ENABLE_SIMD != 0 #define SET_GOTO_TABLE_SIMD_PREFIX_ELEM() \ SET_GOTO_TABLE_ELEM(WASM_OP_SIMD_PREFIX),