Index: src/wasm/wasm-macro-gen.h |
diff --git a/src/wasm/wasm-macro-gen.h b/src/wasm/wasm-macro-gen.h |
index 332d97573f5c066dd3e4213db89b31b694908824..eb1bdbc4dd6a40b9d8fa43b5e47bac20bd77f414 100644 |
--- a/src/wasm/wasm-macro-gen.h |
+++ b/src/wasm/wasm-macro-gen.h |
@@ -460,6 +460,7 @@ class LocalDeclEncoder { |
static_cast<byte>(index) |
#define WASM_UNOP(opcode, x) x, static_cast<byte>(opcode) |
#define WASM_BINOP(opcode, x, y) x, y, static_cast<byte>(opcode) |
+#define WASM_SIMD_UNOP(opcode, x) x, kSimdPrefix, static_cast<byte>(opcode) |
#define WASM_SIMD_BINOP(opcode, x, y) \ |
x, y, kSimdPrefix, static_cast<byte>(opcode) |