aboutsummaryrefslogtreecommitdiffstats
path: root/test/libjulia/yulOptimizerTests/expressionInliner/complex_with_evm.yul
blob: 519a2af855d184fc2a59647945c7b2f07cd470ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
    function f(a) -> x { x := add(a, a) }
    let y := f(calldatasize())
}
// ----
// expressionInliner
// {
//     function f(a) -> x
//     {
//         x := add(a, a)
//     }
//     let y := add(calldatasize(), calldatasize())
// }