mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
30 lines
726 B
Solidity
30 lines
726 B
Solidity
pragma abicoder v2;
|
|
|
|
contract C {
|
|
function exp_neg_one(uint exponent) public returns(int) {
|
|
unchecked { return (-1)**exponent; }
|
|
}
|
|
function exp_two(uint exponent) public returns(uint) {
|
|
unchecked { return 2**exponent; }
|
|
}
|
|
function exp_zero(uint exponent) public returns(uint) {
|
|
unchecked { return 0**exponent; }
|
|
}
|
|
function exp_one(uint exponent) public returns(uint) {
|
|
unchecked { return 1**exponent; }
|
|
}
|
|
}
|
|
// ====
|
|
// optimize: false
|
|
// optimize-yul: false
|
|
// ----
|
|
// creation:
|
|
// codeDepositCost: 110800
|
|
// executionCost: 159
|
|
// totalCost: 110959
|
|
// external:
|
|
// exp_neg_one(uint256): 2259
|
|
// exp_one(uint256): infinite
|
|
// exp_two(uint256): infinite
|
|
// exp_zero(uint256): infinite
|