aboutsummaryrefslogtreecommitdiffstats
path: root/test/libyul/yulOptimizerTests/fullInliner/pop_result.yul
blob: 3883c67c5a5e35d4db91f96556f2549ddc79908e (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
// This tests that `pop(r)` is removed.
{
    function f(a) -> x {
        let r := mul(a, a)
        x := add(r, r)
    }
    pop(add(f(7), 2))
}
// ----
// fullInliner
// {
//     {
//         let _1 := 2
//         let f_a := 7
//         let f_x
//         {
//             let f_r := mul(f_a, f_a)
//             f_x := add(f_r, f_r)
//         }
//         {
//         }
//     }
//     function f(a) -> x
//     {
//         let r := mul(a, a)
//         x := add(r, r)
//     }
// }