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

13 lines
162 B
Plaintext
Raw Normal View History

2018-10-01 16:27:07 +00:00
{
for { let b := mload(1) } b {} {}
}
// ----
// step: expressionJoiner
//
2018-10-01 16:27:07 +00:00
// {
2021-11-09 12:25:25 +00:00
// {
// for { let b := mload(1) } b { }
// { }
// }
2018-10-01 16:27:07 +00:00
// }