solidity/test/libyul/yulOptimizerTests/expressionJoiner/multi_wrong_order2.yul
Daniel Kirchner 10618188dd Update tests.
2021-11-09 14:34:05 +01:00

16 lines
225 B
Plaintext

{
let a := mload(2)
let b := mload(6)
let x := mul(add(a, b), 2)
sstore(x, 3)
}
// ----
// step: expressionJoiner
//
// {
// {
// let a := mload(2)
// sstore(mul(add(a, mload(6)), 2), 3)
// }
// }