summaryrefslogtreecommitdiff
path: root/src/tools/fuzzing/fuzzing.cpp
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 /src/tools/fuzzing/fuzzing.cpp
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 'src/tools/fuzzing/fuzzing.cpp')
-rw-r--r--src/tools/fuzzing/fuzzing.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/fuzzing/fuzzing.cpp b/src/tools/fuzzing/fuzzing.cpp
index a41e6704e..064871931 100644
--- a/src/tools/fuzzing/fuzzing.cpp
+++ b/src/tools/fuzzing/fuzzing.cpp
@@ -2442,7 +2442,7 @@ Expression* TranslateToFuzzReader::makeBinary(Type type) {
NarrowUVecI16x8ToVecI8x16,
NarrowSVecI32x4ToVecI16x8,
NarrowUVecI32x4ToVecI16x8,
- SwizzleVec8x16),
+ SwizzleVecI8x16),
make(Type::v128),
make(Type::v128)});
}