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

11 lines
136 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
// {
// for { let b := mload(1) } b { }
// { }
2018-10-01 16:27:07 +00:00
// }