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

16 lines
229 B
Plaintext

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