solidity/test/libyul/yulOptimizerTests/expressionJoiner/triple.yul

14 lines
212 B
Plaintext
Raw Normal View History

2018-10-01 16:27:07 +00:00
{
let a := mload(2)
let b := mload(6)
let c := mload(7)
let x := mul(add(c, b), a)
sstore(x, 3)
}
2019-04-01 14:33:46 +00:00
// ====
// step: expressionJoiner
2018-10-01 16:27:07 +00:00
// ----
// {
// sstore(mul(add(mload(7), mload(6)), mload(2)), 3)
// }