From d945aa489a1ad62c130e04ceea8492c7a728ab57 Mon Sep 17 00:00:00 2001 From: Brendan Dahl Date: Thu, 8 Aug 2024 10:22:51 -0700 Subject: [FP16] Implement lane access instructions. (#6821) Specified at https://github.com/WebAssembly/half-precision/blob/main/proposals/half-precision/Overview.md --- src/wasm/wasm.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/wasm/wasm.cpp') diff --git a/src/wasm/wasm.cpp b/src/wasm/wasm.cpp index b17250e6c..ae70e4a22 100644 --- a/src/wasm/wasm.cpp +++ b/src/wasm/wasm.cpp @@ -386,6 +386,7 @@ void SIMDExtract::finalize() { case ExtractLaneVecI64x2: type = Type::i64; break; + case ExtractLaneVecF16x8: case ExtractLaneVecF32x4: type = Type::f32; break; @@ -636,6 +637,7 @@ void Unary::finalize() { case SplatVecI16x8: case SplatVecI32x4: case SplatVecI64x2: + case SplatVecF16x8: case SplatVecF32x4: case SplatVecF64x2: case NotVec128: -- cgit v1.2.3