solidity/test/libyul/yulOptimizerTests/unusedStoreEliminator/create_inside_function.yul

23 lines
326 B
Plaintext
Raw Normal View History

2021-05-05 16:02:35 +00:00
{
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)) }
// }