mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
16 lines
243 B
Plaintext
16 lines
243 B
Plaintext
{
|
|
let x := calldataload(0)
|
|
let a := and(shl(x, 248), shl(x, 12))
|
|
sstore(10, a)
|
|
}
|
|
// ====
|
|
// EVMVersion: >byzantium
|
|
// ----
|
|
// step: expressionSimplifier
|
|
//
|
|
// {
|
|
// {
|
|
// sstore(10, shl(calldataload(0), 8))
|
|
// }
|
|
// }
|