solidity/test/libyul/yulOptimizerTests/fullInliner/no_return.yul

23 lines
281 B
Plaintext
Raw Normal View History

2018-10-11 15:14:59 +00:00
{
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)
// }
// }