summaryrefslogtreecommitdiff
path: root/test/example/c-api-kitchen-sink.c
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2019-11-04 15:44:19 -0800
committerGitHub <noreply@github.com>2019-11-04 15:44:19 -0800
commit368f8a743c8322c3a01633f0cfa8ce205d58fb49 (patch)
tree3cf09812f83b13d6c7dd87cc0359fd7e024ad0a4 /test/example/c-api-kitchen-sink.c
parent74526f3effdab0d5bca9cb122989335b6527e76f (diff)
downloadbinaryen-368f8a743c8322c3a01633f0cfa8ce205d58fb49.tar.gz
binaryen-368f8a743c8322c3a01633f0cfa8ce205d58fb49.tar.bz2
binaryen-368f8a743c8322c3a01633f0cfa8ce205d58fb49.zip
Add i32x4.dot_i16x8_s (#2420)
This experimental instruction is specified in https://github.com/WebAssembly/simd/pull/127 and is being implemented to enable further investigation of its performance impact.
Diffstat (limited to 'test/example/c-api-kitchen-sink.c')
-rw-r--r--test/example/c-api-kitchen-sink.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/example/c-api-kitchen-sink.c b/test/example/c-api-kitchen-sink.c
index a4a4c860d..f7bc12b8d 100644
--- a/test/example/c-api-kitchen-sink.c
+++ b/test/example/c-api-kitchen-sink.c
@@ -454,6 +454,7 @@ void test_core() {
makeBinary(module, BinaryenMinUVecI32x4(), 5),
makeBinary(module, BinaryenMaxSVecI32x4(), 5),
makeBinary(module, BinaryenMaxUVecI32x4(), 5),
+ makeBinary(module, BinaryenDotSVecI16x8ToVecI32x4(), 5),
makeBinary(module, BinaryenDivVecF32x4(), 5),
makeBinary(module, BinaryenMinVecF32x4(), 5),
makeBinary(module, BinaryenMaxVecF32x4(), 5),