mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
18 lines
485 B
Plaintext
18 lines
485 B
Plaintext
{
|
|
let a := and(0xff, shr(248, calldataload(0)))
|
|
let b := and(shr(248, calldataload(0)), 0xff)
|
|
let c := and(shr(249, calldataload(0)), 0xfa)
|
|
let d := and(shr(247, calldataload(0)), 0xff)
|
|
}
|
|
// ====
|
|
// EVMVersion: >=constantinople
|
|
// ----
|
|
// step: expressionSimplifier
|
|
//
|
|
// {
|
|
// let a := shr(248, calldataload(0))
|
|
// let b := shr(248, calldataload(0))
|
|
// let c := and(shr(249, calldataload(0)), 0xfa)
|
|
// let d := and(shr(247, calldataload(0)), 0xff)
|
|
// }
|