summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorBrendan Dahl <brendan.dahl@gmail.com>2024-08-08 10:22:51 -0700
committerGitHub <noreply@github.com>2024-08-08 10:22:51 -0700
commitd945aa489a1ad62c130e04ceea8492c7a728ab57 (patch)
tree04e529f11ed8b2dfe9d98f84d25f7bef05f158b0 /src/tools
parentc9fd92c25a74a70c9730f1b39b49ef3d91a1a7f1 (diff)
downloadbinaryen-d945aa489a1ad62c130e04ceea8492c7a728ab57.tar.gz
binaryen-d945aa489a1ad62c130e04ceea8492c7a728ab57.tar.bz2
binaryen-d945aa489a1ad62c130e04ceea8492c7a728ab57.zip
[FP16] Implement lane access instructions. (#6821)
Specified at https://github.com/WebAssembly/half-precision/blob/main/proposals/half-precision/Overview.md
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/fuzzing/fuzzing.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/fuzzing/fuzzing.cpp b/src/tools/fuzzing/fuzzing.cpp
index 2aff7146e..fd0dfb26c 100644
--- a/src/tools/fuzzing/fuzzing.cpp
+++ b/src/tools/fuzzing/fuzzing.cpp
@@ -3579,6 +3579,7 @@ Expression* TranslateToFuzzReader::makeSIMDExtract(Type type) {
break;
case ExtractLaneSVecI16x8:
case ExtractLaneUVecI16x8:
+ case ExtractLaneVecF16x8:
index = upTo(8);
break;
case ExtractLaneVecI32x4: