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

13 lines
234 B
Plaintext
Raw Normal View History

{
for { let a := 1 } iszero(eq(a, 10)) { a := add(a, 1) } {
a := add(a, 1)
}
}
2019-04-01 14:33:46 +00:00
// ====
// step: blockFlattener
// ----
// {
// for { let a := 1 } iszero(eq(a, 10)) { a := add(a, 1) }
// { a := add(a, 1) }
// }