Add structural simplifier as optimization step for Yul.

This commit is contained in:
Daniel Kirchner
2018-12-06 18:37:35 +01:00
parent 4b2a64306a
commit 1eb60cbb39
19 changed files with 292 additions and 15 deletions
@@ -0,0 +1,10 @@
{
for { let a := 42 } 0 { a := a } {
let b := a
}
}
// ----
// structuralSimplifier
// {
// let a := 42
// }