solidity/test/libyul/yulOptimizerTests/unusedFunctionParameterPruner/simple.yul

22 lines
343 B
Plaintext
Raw Normal View History

2020-08-20 14:56:25 +00:00
{
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() }
// }