summaryrefslogtreecommitdiff
path: root/test/example/c-api-kitchen-sink.c
diff options
context:
space:
mode:
authorHeejin Ahn <aheejin@gmail.com>2022-04-09 13:27:37 +0900
committerGitHub <noreply@github.com>2022-04-09 13:27:37 +0900
commit5d5e4654d0fd6165f7ddad88a20ce17ffa4caad6 (patch)
tree36670b7ea05adf9aa1989fac978090b234571da0 /test/example/c-api-kitchen-sink.c
parent094deb0b1d1def452cb784191004a5e2001c6a99 (diff)
downloadbinaryen-5d5e4654d0fd6165f7ddad88a20ce17ffa4caad6.tar.gz
binaryen-5d5e4654d0fd6165f7ddad88a20ce17ffa4caad6.tar.bz2
binaryen-5d5e4654d0fd6165f7ddad88a20ce17ffa4caad6.zip
[SIMD] Make swizzle's opcode name consistent (NFC) (#4585)
Other opcode ends with `Inxm` or `Fnxm` (where n and m are integers), while `i8x16.swizzle`'s opcode name doesn't have an `I` in there.
Diffstat (limited to 'test/example/c-api-kitchen-sink.c')
-rw-r--r--test/example/c-api-kitchen-sink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/example/c-api-kitchen-sink.c b/test/example/c-api-kitchen-sink.c
index 90784d7ac..e3199bdd6 100644
--- a/test/example/c-api-kitchen-sink.c
+++ b/test/example/c-api-kitchen-sink.c
@@ -675,7 +675,7 @@ void test_core() {
makeBinary(module, BinaryenNarrowUVecI16x8ToVecI8x16(), v128),
makeBinary(module, BinaryenNarrowSVecI32x4ToVecI16x8(), v128),
makeBinary(module, BinaryenNarrowUVecI32x4ToVecI16x8(), v128),
- makeBinary(module, BinaryenSwizzleVec8x16(), v128),
+ makeBinary(module, BinaryenSwizzleVecI8x16(), v128),
// SIMD lane manipulation
makeSIMDExtract(module, BinaryenExtractLaneSVecI8x16()),
makeSIMDExtract(module, BinaryenExtractLaneUVecI8x16()),