mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
66 lines
1.3 KiB
Solidity
66 lines
1.3 KiB
Solidity
contract C {
|
|
function f1() public pure returns (bool) {
|
|
return (-4266 >> 0) == -4266;
|
|
}
|
|
|
|
function f2() public pure returns (bool) {
|
|
return (-4266 >> 1) == -2133;
|
|
}
|
|
|
|
function f3() public pure returns (bool) {
|
|
return (-4266 >> 4) == -267;
|
|
}
|
|
|
|
function f4() public pure returns (bool) {
|
|
return (-4266 >> 8) == -17;
|
|
}
|
|
|
|
function f5() public pure returns (bool) {
|
|
return (-4266 >> 16) == -1;
|
|
}
|
|
|
|
function f6() public pure returns (bool) {
|
|
return (-4266 >> 17) == -1;
|
|
}
|
|
|
|
function g1() public pure returns (bool) {
|
|
return (-4267 >> 0) == -4267;
|
|
}
|
|
|
|
function g2() public pure returns (bool) {
|
|
return (-4267 >> 1) == -2134;
|
|
}
|
|
|
|
function g3() public pure returns (bool) {
|
|
return (-4267 >> 4) == -267;
|
|
}
|
|
|
|
function g4() public pure returns (bool) {
|
|
return (-4267 >> 8) == -17;
|
|
}
|
|
|
|
function g5() public pure returns (bool) {
|
|
return (-4267 >> 16) == -1;
|
|
}
|
|
|
|
function g6() public pure returns (bool) {
|
|
return (-4267 >> 17) == -1;
|
|
}
|
|
}
|
|
|
|
// ====
|
|
// compileViaYul: also
|
|
// ----
|
|
// f1() -> true
|
|
// f2() -> true
|
|
// f3() -> true
|
|
// f4() -> true
|
|
// f5() -> true
|
|
// f6() -> true
|
|
// g1() -> true
|
|
// g2() -> true
|
|
// g3() -> true
|
|
// g4() -> true
|
|
// g5() -> true
|
|
// g6() -> true
|