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

17 lines
309 B
Plaintext
Raw Normal View History

2020-08-20 14:56:25 +00:00
// A test where all parameters are used
{
sstore(f(1), 0)
function f(a) -> x { x := a }
function g(b) -> y { y := g(b) }
}
// ----
// step: unusedFunctionParameterPruner
//
// {
// sstore(f(1), 0)
// function f(a) -> x
// { x := a }
// function g(b) -> y
// { y := g(b) }
// }