solidity/test/libyul/yulOptimizerTests/forLoopConditionIntoBody/empty_body.yul

13 lines
239 B
Plaintext

{
for { let a := 1 } iszero(eq(a, 10)) { a := add(a, 1) } { }
}
// ----
// step: forLoopConditionIntoBody
//
// {
// for { let a := 1 } true { a := add(a, 1) }
// {
// if iszero(iszero(eq(a, 10))) { break }
// }
// }