solidity/test/libyul/yulOptimizerTests/expressionJoiner/multi_wrong_order.yul
2018-10-15 11:52:35 +02:00

16 lines
339 B
Plaintext

{
// We have an interleaved "add" here, so we cannot inline "a"
// (note that this component does not analyze whether
// functions are pure or not)
let a := mload(2)
let b := mload(6)
let x := mul(a, add(2, b))
sstore(x, 3)
}
// ----
// expressionJoiner
// {
// let a := mload(2)
// sstore(mul(a, add(2, mload(6))), 3)
// }