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

15 lines
229 B
Plaintext

{
// This is not joined because a is referenced multiple times
let a := mload(2)
let b := add(a, a)
}
// ----
// step: expressionJoiner
//
// {
// {
// let a := mload(2)
// let b := add(a, a)
// }
// }