Fix expression simplifying by moving from SSAValueTracker to DataFlowAnalyzer as a base.

This commit is contained in:
chriseth
2019-02-27 16:14:39 +01:00
parent 4c1b0fbafa
commit 477c53a46f
5 changed files with 37 additions and 12 deletions
@@ -0,0 +1,12 @@
{
let x := mload(0)
x := 0
mstore(0, add(7, x))
}
// ----
// expressionSimplifier
// {
// let x := mload(0)
// x := 0
// mstore(0, 7)
// }