mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
24 lines
401 B
Plaintext
24 lines
401 B
Plaintext
{
|
|
pop(f())
|
|
pop(g())
|
|
function f() -> b { let a := mload(0) b := a }
|
|
function g() -> a { let b := mload(0) a := b }
|
|
}
|
|
// ----
|
|
// step: equivalentFunctionCombiner
|
|
//
|
|
// {
|
|
// pop(f())
|
|
// pop(f())
|
|
// function f() -> b
|
|
// {
|
|
// let a := mload(0)
|
|
// b := a
|
|
// }
|
|
// function g() -> a_1
|
|
// {
|
|
// let b_2 := mload(0)
|
|
// a_1 := b_2
|
|
// }
|
|
// }
|