solidity/test/libyul/yulOptimizerTests/fullInliner/no_return.yul
2018-10-16 17:16:03 +02:00

19 lines
225 B
Plaintext

{
function f(a) {
sstore(a, a)
}
f(mload(0))
}
// ----
// fullInliner
// {
// {
// let f_a := mload(0)
// sstore(f_a, f_a)
// }
// function f(a)
// {
// sstore(a, a)
// }
// }