mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
16 lines
277 B
Plaintext
16 lines
277 B
Plaintext
{
|
|
let x := calldataload(3)
|
|
let a := 10
|
|
for { } iszero(eq(a, sub(x, calldataload(3)))) { a := add(a, 1) } {}
|
|
}
|
|
// ----
|
|
// step: fullSimplify
|
|
//
|
|
// {
|
|
// {
|
|
// let a := 10
|
|
// for { } iszero(iszero(a)) { a := add(a, 1) }
|
|
// { }
|
|
// }
|
|
// }
|