We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c7f64b commit 70b35f9Copy full SHA for 70b35f9
1 file changed
core/iwasm/interpreter/wasm_opcode.h
@@ -790,15 +790,14 @@ typedef enum WASMAtomicEXTOpcode {
790
#endif
791
#define SET_GOTO_TABLE_ELEM(opcode) [opcode] = HANDLE_OPCODE(opcode)
792
793
-#if (WASM_ENABLE_JIT != 0 || WASM_ENABLE_FAST_INTERP != 0) \
794
- && WASM_ENABLE_SIMD != 0
+#if WASM_ENABLE_SIMDE != 0
795
#define SET_GOTO_TABLE_SIMD_PREFIX_ELEM() \
796
SET_GOTO_TABLE_ELEM(WASM_OP_SIMD_PREFIX),
797
#else
798
#define SET_GOTO_TABLE_SIMD_PREFIX_ELEM()
799
800
801
-#if (WASM_ENABLE_FAST_INTERP != 0) && WASM_ENABLE_SIMD != 0
+#if WASM_ENABLE_SIMD != 0 && WASM_ENABLE_SIMDE != 0
802
#define DEF_EXT_V128_HANDLE() \
803
SET_GOTO_TABLE_ELEM(EXT_OP_SET_LOCAL_FAST_V128), /* 0xdd */ \
804
SET_GOTO_TABLE_ELEM(EXT_OP_TEE_LOCAL_FAST_V128), /* 0xde */ \
0 commit comments