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

18 lines
216 B
Plaintext
Raw Normal View History

2018-10-11 15:14:59 +00:00
{
function f(a) {
sstore(a, a)
}
f(mload(0))
}
// ----
// step: fullInliner
//
2018-10-11 15:14:59 +00:00
// {
// {
// let a_3 := mload(0)
// sstore(a_3, a_3)
2018-10-11 15:14:59 +00:00
// }
// function f(a)
// { sstore(a, a) }
2018-10-11 15:14:59 +00:00
// }