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

16 lines
281 B
Plaintext
Raw Normal View History

{
let random := 42
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: forLoopInitRewriter
// ----
// {
// let random := 42
// let a := 1
// for { } iszero(eq(a, 10)) { a := add(a, 1) }
// { a := add(a, 1) }
// }