We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7a40785 + 4bcd69e commit b897d5dCopy full SHA for b897d5d
test/tools/ossfuzz/StackReuseCodegenFuzzer.cpp
@@ -60,8 +60,9 @@ DEFINE_PROTO_FUZZER(Program const& _input)
60
filterUnboundedLoops
61
);
62
string yul_source = converter.programToString(_input);
63
- // Fuzzer also fuzzes the EVM version field.
64
- langutil::EVMVersion version = converter.version();
+ // Do not fuzz the EVM Version field.
+ // See https://github.com/ethereum/solidity/issues/12590
65
+ langutil::EVMVersion version;
66
EVMHost hostContext(version, evmone);
67
hostContext.reset();
68
0 commit comments