aboutsummaryrefslogtreecommitdiffstats
path: root/test/libjulia/yulOptimizerTests/fullInliner/simple.yul
blob: dd1a4e0a69c7a232a0cd9e1427a57bd41abacaa4 (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
{
    function f(a) -> x {
        let r := mul(a, a)
        x := add(r, r)
    }
    let y := add(f(sload(mload(2))), mload(7))
}
// ----
// fullInliner
// {
//     {
//         let _1 := mload(7)
//         let f_a := sload(mload(2))
//         let f_x
//         {
//             let f_r := mul(f_a, f_a)
//             f_x := add(f_r, f_r)
//         }
//         let y := add(f_x, _1)
//     }
//     function f(a) -> x
//     {
//         let r := mul(a, a)
//         x := add(r, r)
//     }
// }