solidity/test/libyul/yulOptimizerTests/expressionInliner/complex_with_evm.yul

13 lines
229 B
Plaintext
Raw Normal View History

2018-10-11 14:58:21 +00:00
{
function f(a) -> x { x := add(a, a) }
let y := f(calldatasize())
}
// ----
// step: expressionInliner
//
2018-10-11 14:58:21 +00:00
// {
// function f(a) -> x
// { x := add(a, a) }
2018-10-11 14:58:21 +00:00
// let y := add(calldatasize(), calldatasize())
// }