solidity/test/libyul/yulOptimizerTests/fullInliner/no_return.yul
2019-04-03 14:58:20 +02:00

20 lines
239 B
Plaintext

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