Index: src/wasm/wasm-macro-gen.h |
diff --git a/src/wasm/wasm-macro-gen.h b/src/wasm/wasm-macro-gen.h |
index b7cf1ee96ba3284f2daa00bd7b3203025f116f37..a7578a83934e2ed618089e9ae2ff631fca42c678 100644 |
--- a/src/wasm/wasm-macro-gen.h |
+++ b/src/wasm/wasm-macro-gen.h |
@@ -614,7 +614,11 @@ class LocalDeclEncoder { |
#define WASM_SIMD_I32x4_SPLAT(x) x, kSimdPrefix, kExprI32x4Splat & 0xff |
#define WASM_SIMD_I32x4_EXTRACT_LANE(lane, x) \ |
x, kSimdPrefix, kExprI32x4ExtractLane & 0xff, static_cast<byte>(lane) |
+#define WASM_SIMD_I32x4_REPLACE_LANE(lane, x, y) \ |
+ x, y, kSimdPrefix, kExprI32x4ReplaceLane & 0xff, static_cast<byte>(lane) |
#define WASM_SIMD_I32x4_ADD(x, y) x, y, kSimdPrefix, kExprI32x4Add & 0xff |
+#define WASM_SIMD_I32x4_SUB(x, y) x, y, kSimdPrefix, kExprI32x4Sub & 0xff |
+ |
#define WASM_SIMD_F32x4_SPLAT(x) x, kSimdPrefix, kExprF32x4Splat & 0xff |
#define WASM_SIMD_F32x4_EXTRACT_LANE(lane, x) \ |
x, kSimdPrefix, kExprF32x4ExtractLane & 0xff, static_cast<byte>(lane) |