mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
27 lines
530 B
Plaintext
27 lines
530 B
Plaintext
{
|
|
let b := 1
|
|
// tests if c, d, and inv can be moved outside in single pass
|
|
for { let a := 1 } iszero(eq(a, 10)) { a := add(a, 1) } {
|
|
let c := b
|
|
let d := mul(c, 2)
|
|
let inv := add(c, d)
|
|
a := add(a, 1)
|
|
mstore(a, inv)
|
|
}
|
|
}
|
|
// ----
|
|
// step: loopInvariantCodeMotion
|
|
//
|
|
// {
|
|
// let b := 1
|
|
// let a := 1
|
|
// let c := b
|
|
// let d := mul(c, 2)
|
|
// let inv := add(c, d)
|
|
// for { } iszero(eq(a, 10)) { a := add(a, 1) }
|
|
// {
|
|
// a := add(a, 1)
|
|
// mstore(a, inv)
|
|
// }
|
|
// }
|