From f7c4e9f3286f8ad798203d6a0c634fb05c55fdbd Mon Sep 17 00:00:00 2001 From: Maks Litskevich Date: Tue, 28 Jan 2025 13:03:24 +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 c8cdd0c2f..176515c57 100644 --- a/core/iwasm/interpreter/wasm_opcode.h +++ b/core/iwasm/interpreter/wasm_opcode.h @@ -278,7 +278,7 @@ typedef enum WASMOpcode { DEBUG_OP_BREAK = 0xdc, /* debug break point */ #endif -#if (WASM_ENABLE_JIT != 0 || (WASM_ENABLE_FAST_INTERP != 0)) \ +#if WASM_ENABLE_JIT != 0 || WASM_ENABLE_FAST_INTERP != 0 \ && WASM_ENABLE_SIMD != 0 EXT_OP_SET_LOCAL_FAST_V128 = 0xdd, EXT_OP_TEE_LOCAL_FAST_V128 = 0xde,