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

20 lines
211 B
Plaintext
Raw Normal View History

2018-01-22 23:06:55 +00:00
{
function f(a) {
f(1)
}
f(mload(0))
}
2019-04-01 14:33:46 +00:00
// ====
// step: fullInliner
2018-01-22 23:06:55 +00:00
// ----
// {
// {
// let a_4 := mload(0)
2018-01-22 23:06:55 +00:00
// f(1)
// }
// function f(a)
// {
// f(1)
// }
// }