mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
24 lines
556 B
Plaintext
24 lines
556 B
Plaintext
{
|
|
let b := 1
|
|
for { let a := 1 } iszero(eq(a, 10)) { a := add(a, 1) } {
|
|
let c := mload(3) // c cannot be moved because non-movable
|
|
let not_inv := add(b, c) // no_inv cannot be moved because its value depends on c
|
|
a := add(a, 1)
|
|
mstore(a, not_inv)
|
|
}
|
|
}
|
|
// ----
|
|
// step: loopInvariantCodeMotion
|
|
//
|
|
// {
|
|
// let b := 1
|
|
// let a := 1
|
|
// for { } iszero(eq(a, 10)) { a := add(a, 1) }
|
|
// {
|
|
// let c := mload(3)
|
|
// let not_inv := add(b, c)
|
|
// a := add(a, 1)
|
|
// mstore(a, not_inv)
|
|
// }
|
|
// }
|