mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
15 lines
209 B
Plaintext
15 lines
209 B
Plaintext
{
|
|
let a := mload(3)
|
|
let b := sload(a)
|
|
let c := mload(7)
|
|
let d := add(b, c)
|
|
sstore(d, 0)
|
|
}
|
|
// ----
|
|
// step: expressionJoiner
|
|
//
|
|
// {
|
|
// let b := sload(mload(3))
|
|
// sstore(add(b, mload(7)), 0)
|
|
// }
|