mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Rename function.
This commit is contained in:
parent
b6f7640801
commit
14d7ca49c0
@ -1462,7 +1462,7 @@ string YulUtilFunctions::clearStorageStructFunction(StructType const& _type)
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
string YulUtilFunctions::copyArrayToStorage(ArrayType const& _fromType, ArrayType const& _toType)
|
string YulUtilFunctions::copyArrayToStorageFunction(ArrayType const& _fromType, ArrayType const& _toType)
|
||||||
{
|
{
|
||||||
solAssert(
|
solAssert(
|
||||||
*_fromType.copyForLocation(_toType.location(), _toType.isPointer()) == dynamic_cast<ReferenceType const&>(_toType),
|
*_fromType.copyForLocation(_toType.location(), _toType.isPointer()) == dynamic_cast<ReferenceType const&>(_toType),
|
||||||
@ -2154,7 +2154,7 @@ string YulUtilFunctions::updateStorageValueFunction(
|
|||||||
)");
|
)");
|
||||||
templ("functionName", functionName);
|
templ("functionName", functionName);
|
||||||
templ("value", suffixedVariableNameList("value_", 0, _fromType.sizeOnStack()));
|
templ("value", suffixedVariableNameList("value_", 0, _fromType.sizeOnStack()));
|
||||||
templ("copyArrayToStorage", copyArrayToStorage(
|
templ("copyArrayToStorage", copyArrayToStorageFunction(
|
||||||
dynamic_cast<ArrayType const&>(_fromType),
|
dynamic_cast<ArrayType const&>(_fromType),
|
||||||
dynamic_cast<ArrayType const&>(_toType)
|
dynamic_cast<ArrayType const&>(_toType)
|
||||||
));
|
));
|
||||||
|
@ -188,7 +188,7 @@ public:
|
|||||||
|
|
||||||
/// @returns the name of a function that will copy array from calldata or memory to storage
|
/// @returns the name of a function that will copy array from calldata or memory to storage
|
||||||
/// signature (to_slot, from_ptr) ->
|
/// signature (to_slot, from_ptr) ->
|
||||||
std::string copyArrayToStorage(ArrayType const& _fromType, ArrayType const& _toType);
|
std::string copyArrayToStorageFunction(ArrayType const& _fromType, ArrayType const& _toType);
|
||||||
|
|
||||||
/// Returns the name of a function that will convert a given length to the
|
/// Returns the name of a function that will convert a given length to the
|
||||||
/// size in memory (number of storage slots or calldata/memory bytes) it
|
/// size in memory (number of storage slots or calldata/memory bytes) it
|
||||||
|
Loading…
Reference in New Issue
Block a user