solidity/test/libyul/yulOptimizerTests/blockFlattener/for_stmt.yul
Daniel Kirchner 10618188dd Update tests.
2021-11-09 14:34:05 +01:00

17 lines
279 B
Plaintext

{
{
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) }
// }
// }