mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
19 lines
333 B
Plaintext
19 lines
333 B
Plaintext
{
|
|
let x := calldataload(0)
|
|
let y := calldataload(32)
|
|
sstore(x, y)
|
|
y := calldataload(64)
|
|
// cannot be removed
|
|
sstore(x, y)
|
|
}
|
|
// ----
|
|
// step: equalStoreEliminator
|
|
//
|
|
// {
|
|
// let x := calldataload(0)
|
|
// let y := calldataload(32)
|
|
// sstore(x, y)
|
|
// y := calldataload(64)
|
|
// sstore(x, y)
|
|
// }
|