mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
711ed588d7
Co-authored-by: Harikrishnan Mulackal <webmail.hari@gmail.com>
30 lines
464 B
Plaintext
30 lines
464 B
Plaintext
{
|
|
let a := mload(0)
|
|
for { mstore(0, a) } a { mstore(0, a) }
|
|
{
|
|
a := add(a, 3)
|
|
}
|
|
mstore(0, a)
|
|
}
|
|
// ----
|
|
// step: ssaTransform
|
|
//
|
|
// {
|
|
// let a_1 := mload(0)
|
|
// let a := a_1
|
|
// mstore(0, a_1)
|
|
// for { }
|
|
// a
|
|
// {
|
|
// let a_4 := a
|
|
// mstore(0, a_4)
|
|
// }
|
|
// {
|
|
// let a_3 := a
|
|
// let a_2 := add(a_3, 3)
|
|
// a := a_2
|
|
// }
|
|
// let a_5 := a
|
|
// mstore(0, a_5)
|
|
// }
|