Ver Fonte

Update core/iwasm/interpreter/wasm_opcode.h

Co-authored-by: Marcin Kolny <marcin.kolny@gmail.com>
Maks Litskevich há 11 meses atrás
pai
commit
f7c4e9f328
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      core/iwasm/interpreter/wasm_opcode.h

+ 1 - 1
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,