2020-11-12 14:29:08 +00:00
|
|
|
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;
|
|
|
|
}
|
2020-11-12 10:54:37 +00:00
|
|
|
// ====
|
|
|
|
// compileViaYul: also
|
2020-11-12 14:29:08 +00:00
|
|
|
// ----
|
|
|
|
// set(uint256): 1, 2 -> true
|
2021-05-18 13:39:08 +00:00
|
|
|
// gas irOptimized: 110824
|
|
|
|
// gas legacy: 111091
|
|
|
|
// gas legacyOptimized: 110736
|
2020-11-12 14:29:08 +00:00
|
|
|
// set(uint256): 2, 2, 3, 4, 5 -> true
|
2021-05-18 13:39:08 +00:00
|
|
|
// gas irOptimized: 177811
|
|
|
|
// gas legacy: 178021
|
|
|
|
// gas legacyOptimized: 177666
|
2021-01-08 03:45:19 +00:00
|
|
|
// storageEmpty -> 0
|
2020-11-12 14:29:08 +00:00
|
|
|
// copy(uint256,uint256): 1, 2 -> true
|
2021-01-08 03:45:19 +00:00
|
|
|
// storageEmpty -> 0
|
2020-11-12 14:29:08 +00:00
|
|
|
// copy(uint256,uint256): 99, 1 -> true
|
2021-01-08 03:45:19 +00:00
|
|
|
// storageEmpty -> 0
|
2020-11-12 14:29:08 +00:00
|
|
|
// copy(uint256,uint256): 99, 2 -> true
|
2021-01-08 03:45:19 +00:00
|
|
|
// storageEmpty -> 1
|