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