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

13 lines
234 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())
}
2019-04-01 14:33:46 +00:00
// ====
// 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())
// }