diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2022-04-07 08:49:52 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-07 08:49:52 -0700 |
commit | 094deb0b1d1def452cb784191004a5e2001c6a99 (patch) | |
tree | b867b5883f708dd57b89b1e92086172490e8f0b5 /src/wasm-binary.h | |
parent | fb2754fec942e49fcd2e3ec30f9aac5825a2c758 (diff) | |
download | binaryen-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 'src/wasm-binary.h')
-rw-r--r-- | src/wasm-binary.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wasm-binary.h b/src/wasm-binary.h index 051f77f58..859efee54 100644 --- a/src/wasm-binary.h +++ b/src/wasm-binary.h @@ -887,7 +887,7 @@ enum ASTNodes { I16x8Abs = 0x80, I16x8Neg = 0x81, - I16x8Q15mulrSatS = 0x82, + I16x8Q15MulrSatS = 0x82, I16x8AllTrue = 0x83, I16x8Bitmask = 0x84, I16x8NarrowI32x4S = 0x85, @@ -1037,6 +1037,7 @@ enum ASTNodes { F32x4RelaxedMax = 0xe2, F64x2RelaxedMin = 0xd4, F64x2RelaxedMax = 0xee, + I16x8RelaxedQ15MulrS = 0x111, // bulk memory opcodes |