summaryrefslogtreecommitdiff
path: root/scripts/gen-s-parser.py
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2022-04-07 08:49:52 -0700
committerGitHub <noreply@github.com>2022-04-07 08:49:52 -0700
commit094deb0b1d1def452cb784191004a5e2001c6a99 (patch)
treeb867b5883f708dd57b89b1e92086172490e8f0b5 /scripts/gen-s-parser.py
parentfb2754fec942e49fcd2e3ec30f9aac5825a2c758 (diff)
downloadbinaryen-094deb0b1d1def452cb784191004a5e2001c6a99.tar.gz
binaryen-094deb0b1d1def452cb784191004a5e2001c6a99.tar.bz2
binaryen-094deb0b1d1def452cb784191004a5e2001c6a99.zip
Implement i16x8.relaxed_q15mulr_s (#4583)
As proposed in https://github.com/WebAssembly/relaxed-simd/issues/40.
Diffstat (limited to 'scripts/gen-s-parser.py')
-rwxr-xr-xscripts/gen-s-parser.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/gen-s-parser.py b/scripts/gen-s-parser.py
index 512d929b7..ce0507442 100755
--- a/scripts/gen-s-parser.py
+++ b/scripts/gen-s-parser.py
@@ -533,6 +533,7 @@ instructions = [
("f32x4.relaxed_max", "makeBinary(s, BinaryOp::RelaxedMaxVecF32x4)"),
("f64x2.relaxed_min", "makeBinary(s, BinaryOp::RelaxedMinVecF64x2)"),
("f64x2.relaxed_max", "makeBinary(s, BinaryOp::RelaxedMaxVecF64x2)"),
+ ("i16x8.relaxed_q15mulr_s", "makeBinary(s, BinaryOp::RelaxedQ15MulrSVecI16x8)"),
# reference types instructions
("ref.null", "makeRefNull(s)"),