solidity/test/libyul/yulOptimizerTests/unusedStoreEliminator/create_inside_function.yul
2022-03-10 18:25:28 +01:00

23 lines
326 B
Plaintext

{
let x := 5
function f() {
pop(create(0, 0, 0))
}
sstore(x, 10)
f()
sstore(x, 20)
}
// ----
// step: unusedStoreEliminator
//
// {
// {
// let x := 5
// sstore(x, 10)
// f()
// sstore(x, 20)
// }
// function f()
// { pop(create(0, 0, 0)) }
// }