mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
17 lines
261 B
Plaintext
17 lines
261 B
Plaintext
{
|
|
let a := mload(3)
|
|
let b := mload(6)
|
|
let x := mul(add(b, a), mload(2))
|
|
sstore(x, 3)
|
|
}
|
|
// ----
|
|
// step: expressionJoiner
|
|
//
|
|
// {
|
|
// {
|
|
// let a := mload(3)
|
|
// let b := mload(6)
|
|
// sstore(mul(add(b, a), mload(2)), 3)
|
|
// }
|
|
// }
|