solidity/test/libsolidity/gasTests/dispatch_small_optimised.sol

20 lines
413 B
Solidity
Raw Normal View History

contract Small {
uint public a;
uint[] public b;
function f1(uint x) public returns (uint) { a = x; b[uint8(msg.data[0])] = x; }
fallback () external payable {}
}
// ====
// optimize: true
// optimize-runs: 2
// ----
// creation:
2020-12-02 13:15:26 +00:00
// codeDepositCost: 76200
2020-10-13 16:49:50 +00:00
// executionCost: 123
2020-12-02 13:15:26 +00:00
// totalCost: 76323
// external:
// fallback: 118
2020-12-02 13:15:26 +00:00
// a(): 1006
// b(uint256): 2018
// f1(uint256): 41253