mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Add upto 32 function I/O parameters.
This commit is contained in:
parent
28e83a506a
commit
c0e82fa318
@ -1057,6 +1057,9 @@ optional<string> ProtoConverter::functionExists(NumFunctionReturns _numReturns)
|
||||
|
||||
void ProtoConverter::visit(FunctionCall const& _x, string const& _functionName, bool _expression)
|
||||
{
|
||||
// Disable recursive calls.
|
||||
if (_functionName == m_currentFunctionName)
|
||||
return;
|
||||
yulAssert(m_functionSigMap.count(_functionName), "Proto fuzzer: Invalid function.");
|
||||
auto ret = m_functionSigMap.at(_functionName);
|
||||
unsigned numInParams = ret.first;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user