solidity/test/libyul/yulOptimizerTests/fullSimplify/inside_for.yul

16 lines
277 B
Plaintext
Raw Normal View History

{
let x := calldataload(3)
let a := 10
for { } iszero(eq(a, sub(x, calldataload(3)))) { a := add(a, 1) } {}
}
// ----
// step: fullSimplify
//
// {
2021-11-09 12:25:25 +00:00
// {
// let a := 10
// for { } iszero(iszero(a)) { a := add(a, 1) }
// { }
// }
// }