solidity/test/libsolidity/gasTests/dispatch_small_optimised.sol

17 lines
357 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; }
function () external payable {}
}
// ====
// optimize: true
// optimize-runs: 2
// ----
// creation: 111 + 63600 = 63711
// external:
// fallback: 118
// a(): 376
// b(uint256): 753
// f1(uint256): 40600