mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
22 lines
343 B
Plaintext
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() }
|
|
// }
|