solidity/test/libyul/yulOptimizerTests/unusedPruner/msize.yul
Daniel Kirchner 10618188dd Update tests.
2021-11-09 14:34:05 +01:00

15 lines
182 B
Plaintext

{
let a := 1
let b := mload(10)
sstore(0, msize())
}
// ----
// step: unusedPruner
//
// {
// {
// pop(mload(10))
// sstore(0, msize())
// }
// }