Really split structural simplifier.

This commit is contained in:
chriseth
2019-05-13 10:26:57 +02:00
parent d9831c8b96
commit dd4f9bf1a6
10 changed files with 18 additions and 10 deletions
@@ -0,0 +1,16 @@
{
let y := 200
switch calldataload(0)
case 1 { y := 9 }
case 2 { y := 10 }
default { }
}
// ====
// step: controlFlowSimplifier
// ----
// {
// let y := 200
// switch calldataload(0)
// case 1 { y := 9 }
// case 2 { y := 10 }
// }