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

14 lines
214 B
Plaintext
Raw Normal View History

2018-10-01 16:27:07 +00:00
{
// This is not joined because a is referenced multiple times
let a := mload(2)
let b := mload(a)
a := 4
}
// ----
// expressionJoiner
// {
// let a := mload(2)
// let b := mload(a)
// a := 4
// }