aboutsummaryrefslogtreecommitdiffstats
path: root/test/libyul/yulOptimizerTests/fullInliner/recursion.yul
blob: 3e9a8021d158bc437da8d936bc46c720e45658b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
    function f(a) {
        f(1)
    }
    f(mload(0))
}
// ----
// fullInliner
// {
//     {
//         let f_a := mload(0)
//         f(1)
//     }
//     function f(a)
//     {
//         f(1)
//     }
// }