solidity/test/libyul/yulOptimizerTests/fullSuite/unusedFunctionParameterPruner_recursion.yul
Harikrishnan Mulackal 974e35d09c Tests and changelog
2020-09-03 13:15:38 +02:00

30 lines
498 B
Plaintext

{
let j, k, l := f(1, 2, 3)
sstore(0, j)
sstore(1, k)
sstore(1, l)
function f(a, b, c) -> x, y, z
{
x, y, z := f(1, 2, 3)
x := add(x, 1)
}
}
// ----
// step: fullSuite
//
// {
// {
// let x, y, z := f()
// sstore(0, x)
// sstore(1, y)
// sstore(1, z)
// }
// function f() -> x, y, z
// {
// let x_1, y_1, z_1 := f()
// y := y_1
// z := z_1
// x := add(x_1, 1)
// }
// }