mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix call to internalDispatch.
This commit is contained in:
parent
7ce867ac60
commit
2853cba3e5
@ -568,7 +568,10 @@ void IRGeneratorForStatements::endVisit(FunctionCall const& _functionCall)
|
|||||||
}
|
}
|
||||||
|
|
||||||
define(_functionCall) <<
|
define(_functionCall) <<
|
||||||
m_context.internalDispatch(functionType->parameterTypes().size(), functionType->returnParameterTypes().size()) <<
|
m_context.internalDispatch(
|
||||||
|
TupleType(functionType->parameterTypes()).sizeOnStack(),
|
||||||
|
TupleType(functionType->returnParameterTypes()).sizeOnStack()
|
||||||
|
) <<
|
||||||
"(" <<
|
"(" <<
|
||||||
IRVariable(_functionCall.expression()).part("functionIdentifier").name() <<
|
IRVariable(_functionCall.expression()).part("functionIdentifier").name() <<
|
||||||
joinHumanReadablePrefixed(args) <<
|
joinHumanReadablePrefixed(args) <<
|
||||||
|
Loading…
Reference in New Issue
Block a user