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