solidity/test/libyul/yulOptimizerTests/forLoopInitRewriter/empty_pre.yul

21 lines
282 B
Plaintext

{
let a := 1
for {} iszero(eq(a, 10)) { a := add(a, 1) } {
a := add(a, 1)
}
}
// ----
// forLoopInitRewriter
// {
// let a := 1
// for {
// }
// iszero(eq(a, 10))
// {
// a := add(a, 1)
// }
// {
// a := add(a, 1)
// }
// }