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

11 lines
141 B
Plaintext
Raw Normal View History

2018-10-01 16:27:07 +00:00
{
for { let b := mload(1) } b {} {}
}
2019-04-01 14:33:46 +00:00
// ====
// step: expressionJoiner
2018-10-01 16:27:07 +00:00
// ----
// {
// for { let b := mload(1) } b { }
// { }
2018-10-01 16:27:07 +00:00
// }