improved postProcess

collect (and cache) reachable instructions for local declarations
after processing all parent instructions
This commit is contained in:
Svetlana Isakova
2014-02-28 18:03:18 +04:00
parent fbbfb95861
commit b7f7063bf4
5 changed files with 93 additions and 7 deletions
@@ -0,0 +1,7 @@
fun foo(c: Collection<Int>) {
for (e in c) {
{
break
}
}
}