solidity/test/libyul/yulOptimizerTests/fullInliner/recursion.yul

19 lines
197 B
Plaintext
Raw Normal View History

2018-01-22 23:06:55 +00:00
{
function f(a) {
f(1)
}
f(mload(0))
}
// ----
// fullInliner
// {
// {
// let f_a := mload(0)
// f(1)
// }
// function f(a)
// {
// f(1)
// }
// }