mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
24 lines
707 B
Solidity
24 lines
707 B
Solidity
contract c {
|
|
function set(uint key) public returns (bool) { data[key] = msg.data; return true; }
|
|
function copy(uint from, uint to) public returns (bool) { data[to] = data[from]; return true; }
|
|
mapping(uint => bytes) data;
|
|
}
|
|
// ====
|
|
// compileViaYul: also
|
|
// ----
|
|
// set(uint256): 1, 2 -> true
|
|
// gas irOptimized: 110678
|
|
// gas legacy: 111091
|
|
// gas legacyOptimized: 110736
|
|
// set(uint256): 2, 2, 3, 4, 5 -> true
|
|
// gas irOptimized: 177635
|
|
// gas legacy: 178021
|
|
// gas legacyOptimized: 177666
|
|
// storageEmpty -> 0
|
|
// copy(uint256,uint256): 1, 2 -> true
|
|
// storageEmpty -> 0
|
|
// copy(uint256,uint256): 99, 1 -> true
|
|
// storageEmpty -> 0
|
|
// copy(uint256,uint256): 99, 2 -> true
|
|
// storageEmpty -> 1
|