mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
yul Interpreter: Move memory size limit to interpreter state.
This commit is contained in:
@@ -23,7 +23,7 @@ using namespace yul::test::yul_fuzzer;
|
||||
void yulFuzzerUtil::interpret(ostream& _os, shared_ptr<yul::Block> _ast)
|
||||
{
|
||||
InterpreterState state;
|
||||
state.maxTraceSize = 10000;
|
||||
state.maxTraceSize = 75;
|
||||
Interpreter interpreter(state);
|
||||
try
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user