diff options
author | Brendan Dahl <brendan.dahl@gmail.com> | 2024-08-09 09:13:33 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-09 09:13:33 -0700 |
commit | b3e22d29451fbf52521d59ea34e8a5d735c4149c (patch) | |
tree | 034a8d510b7d6fa7589115ac2a046b11585390ce /src/wasm.h | |
parent | d945aa489a1ad62c130e04ceea8492c7a728ab57 (diff) | |
download | binaryen-b3e22d29451fbf52521d59ea34e8a5d735c4149c.tar.gz binaryen-b3e22d29451fbf52521d59ea34e8a5d735c4149c.tar.bz2 binaryen-b3e22d29451fbf52521d59ea34e8a5d735c4149c.zip |
[FP16] Implement relation operations. (#6825)
Specified at
https://github.com/WebAssembly/half-precision/blob/main/proposals/half-precision/Overview.md
Diffstat (limited to 'src/wasm.h')
-rw-r--r-- | src/wasm.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wasm.h b/src/wasm.h index 56e94fef7..e47b7c6ed 100644 --- a/src/wasm.h +++ b/src/wasm.h @@ -381,6 +381,12 @@ enum BinaryOp { GtSVecI64x2, LeSVecI64x2, GeSVecI64x2, + EqVecF16x8, + NeVecF16x8, + LtVecF16x8, + GtVecF16x8, + LeVecF16x8, + GeVecF16x8, EqVecF32x4, NeVecF32x4, LtVecF32x4, |