aboutsummaryrefslogtreecommitdiffstats
path: root/test/libyul/yulOptimizerTests/fullInliner/move_up_rightwards_argument.yul
blob: 0b46a3c6fadaa93b0ff9e8e374e9542b9ec6f579 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
    function f(a, b, c) -> x {
        x := add(a, b)
        x := mul(x, c)
    }
    let y := add(mload(1), add(f(mload(2), mload(3), mload(4)), mload(5)))
}
// ----
// fullInliner
// {
//     {
//         let _2 := mload(5)
//         let _4 := mload(4)
//         let _6 := mload(3)
//         let f_a := mload(2)
//         let f_b := _6
//         let f_c := _4
//         let f_x := 0
//         f_x := add(f_a, f_b)
//         f_x := mul(f_x, f_c)
//         let _10 := add(f_x, _2)
//         let y := add(mload(1), _10)
//     }
//     function f(a, b, c) -> x
//     {
//         x := add(a, b)
//         x := mul(x, c)
//     }
// }