solidity/test/libyul/yulOptimizerTests/blockFlattener/for_stmt.yul

13 lines
229 B
Plaintext
Raw Normal View History

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