diff options
Diffstat (limited to 'src/wasm/wasm-binary.cpp')
-rw-r--r-- | src/wasm/wasm-binary.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/wasm/wasm-binary.cpp b/src/wasm/wasm-binary.cpp index 8c684dc2f..542eab4b4 100644 --- a/src/wasm/wasm-binary.cpp +++ b/src/wasm/wasm-binary.cpp @@ -6823,6 +6823,14 @@ bool WasmBinaryReader::maybeVisitSIMDTernary(Expression*& out, uint32_t code) { curr = allocator.alloc<SIMDTernary>(); curr->op = LaneselectI64x2; break; + case BinaryConsts::F16x8RelaxedMadd: + curr = allocator.alloc<SIMDTernary>(); + curr->op = RelaxedMaddVecF16x8; + break; + case BinaryConsts::F16x8RelaxedNmadd: + curr = allocator.alloc<SIMDTernary>(); + curr->op = RelaxedNmaddVecF16x8; + break; case BinaryConsts::F32x4RelaxedMadd: curr = allocator.alloc<SIMDTernary>(); curr->op = RelaxedMaddVecF32x4; |