Skip to content

Commit daf0b9c

Browse files
authored
Put Extend* opcodes behind SignExt feature. fixes #2257 (#2258)
1 parent eb6edf2 commit daf0b9c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tools/fuzzing.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1764,7 +1764,7 @@ class TranslateToFuzzReader {
17641764
auto op = pick(
17651765
FeatureOptions<UnaryOp>()
17661766
.add(FeatureSet::MVP, EqZInt32, ClzInt32, CtzInt32, PopcntInt32)
1767-
.add(FeatureSet::Atomics, ExtendS8Int32, ExtendS16Int32));
1767+
.add(FeatureSet::SignExt, ExtendS8Int32, ExtendS16Int32));
17681768
return buildUnary({op, make(i32)});
17691769
}
17701770
case i64:

0 commit comments

Comments
 (0)