aboutsummaryrefslogtreecommitdiffstats
path: root/test/libjulia/yulOptimizerTests/fullInliner/move_up_rightwards_argument.yul
blob: e1def5859488b7fd0e0709f07a51e522861be1f6 (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
{
    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 _1 := mload(5)
//         let f_c := mload(4)
//         let f_b := mload(3)
//         let f_a := mload(2)
//         let f_x
//         {
//             f_x := add(f_a, f_b)
//             f_x := mul(f_x, f_c)
//         }
//         let y := add(mload(1), add(f_x, _1))
//     }
//     function f(a, b, c) -> x
//     {
//         x := add(a, b)
//         x := mul(x, c)
//     }
// }