mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
18 lines
371 B
Plaintext
18 lines
371 B
Plaintext
{
|
|
let a := shl(299, calldataload(0))
|
|
let b := shr(299, calldataload(1))
|
|
let c := shl(255, calldataload(2))
|
|
let d := shr(255, calldataload(3))
|
|
}
|
|
// ====
|
|
// EVMVersion: >=constantinople
|
|
// ----
|
|
// step: expressionSimplifier
|
|
//
|
|
// {
|
|
// let a := 0
|
|
// let b := 0
|
|
// let c := shl(255, calldataload(2))
|
|
// let d := shr(255, calldataload(3))
|
|
// }
|