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

22 lines
343 B
Plaintext

{
sstore(f(1), 0)
function f(x) -> y
{
let w := mload(1)
y := mload(w)
}
}
// ----
// step: unusedFunctionParameterPruner
//
// {
// sstore(f_1(1), 0)
// function f() -> y
// {
// let w := mload(1)
// y := mload(w)
// }
// function f_1(x_2) -> y_3
// { y_3 := f() }
// }