summaryrefslogtreecommitdiff
path: root/src/tools/fuzzing.h
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2020-10-27 08:58:36 -0700
committerGitHub <noreply@github.com>2020-10-27 08:58:36 -0700
commitca16f7cdc57549333474d7042128d2007bc35fad (patch)
treec42bffa8027099b9d4f5cb6c2283571bd06950c5 /src/tools/fuzzing.h
parent91ac3be4364e6f9763d6ccff35c83fab0692ef5c (diff)
downloadbinaryen-ca16f7cdc57549333474d7042128d2007bc35fad.tar.gz
binaryen-ca16f7cdc57549333474d7042128d2007bc35fad.tar.bz2
binaryen-ca16f7cdc57549333474d7042128d2007bc35fad.zip
Implement i8x16.popcnt (#3286)
As proposed in https://github.com/WebAssembly/simd/pull/379. Since this instruction is still being evaluated for inclusion in the SIMD proposal, this PR does not add support for it to the C/JS APIs or to the fuzzer. This PR also performs a drive-by fix for unrelated instructions in c-api-kitchen-sink.c
Diffstat (limited to 'src/tools/fuzzing.h')
-rw-r--r--src/tools/fuzzing.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/fuzzing.h b/src/tools/fuzzing.h
index d6ce27b31..709ebe1e8 100644
--- a/src/tools/fuzzing.h
+++ b/src/tools/fuzzing.h
@@ -2026,6 +2026,7 @@ private:
return buildUnary({SplatVecF64x2, make(Type::f64)});
case 4:
return buildUnary({pick(NotVec128,
+ // TODO: i8x16.popcnt once merged
NegVecI8x16,
NegVecI16x8,
NegVecI32x4,