Remove side-effect-free statements.

This commit is contained in:
chriseth
2018-11-08 18:14:36 +01:00
parent 20481055e3
commit fa44d20721
5 changed files with 23 additions and 7 deletions
@@ -16,9 +16,7 @@
// {
// let _18 := 0x20
// let allocate__7 := 0x40
// let allocate_p_12 := mload(allocate__7)
// mstore(allocate__7, add(allocate_p_12, _18))
// pop(allocate_p_12)
// mstore(allocate__7, add(mload(allocate__7), _18))
// let allocate_p_12_31 := mload(allocate__7)
// mstore(allocate__7, add(allocate_p_12_31, allocate__7))
// mstore(add(allocate_p_12_31, 96), 2)
@@ -0,0 +1,8 @@
{
let a := 1
pop(a)
}
// ----
// unusedPruner
// {
// }