diff options
author | Alon Zakai <azakai@google.com> | 2019-07-24 18:08:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-24 18:08:17 -0700 |
commit | b72aa5028ebd5ba4b475ec91d100d1d28e836df1 (patch) | |
tree | 0a6f9ecb040e95c23866bffb476770216ef7b6f5 /src/tools/fuzzing.h | |
parent | daf0b9cf0a5cf32727bfd06960fac48b30813d93 (diff) | |
download | binaryen-b72aa5028ebd5ba4b475ec91d100d1d28e836df1.tar.gz binaryen-b72aa5028ebd5ba4b475ec91d100d1d28e836df1.tar.bz2 binaryen-b72aa5028ebd5ba4b475ec91d100d1d28e836df1.zip |
Fuzz all feature flags, and fix another SignExt issue in the fuzzer (#2259)
Diffstat (limited to 'src/tools/fuzzing.h')
-rw-r--r-- | src/tools/fuzzing.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/fuzzing.h b/src/tools/fuzzing.h index 832fa26ab..68c4d992a 100644 --- a/src/tools/fuzzing.h +++ b/src/tools/fuzzing.h @@ -1815,7 +1815,7 @@ private: auto op = pick(FeatureOptions<UnaryOp>() .add(FeatureSet::MVP, ClzInt64, CtzInt64, PopcntInt64) - .add(FeatureSet::Atomics, + .add(FeatureSet::SignExt, ExtendS8Int64, ExtendS16Int64, ExtendS32Int64)); |