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

18 lines
329 B
Plaintext

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