FIR CFG: remove ordering from control flow through in-place lambdas
Old graph:
arg -> lambda enter -> ... -> lambda exit -> lambda enter -> ... ->
-> lambda exit -> call
New graph:
arg -+-> lambda enter -> ... -> lambda exit -+-> call
\-> lambda enter -> ... -> lambda exit -/
This commit is contained in:
@@ -47,7 +47,7 @@ digraph postponedLambdas_kt {
|
||||
5 -> {6};
|
||||
6 -> {7};
|
||||
7 -> {8};
|
||||
8 -> {9 13};
|
||||
8 -> {9 13 10};
|
||||
8 -> {13} [style=dashed];
|
||||
9 -> {10};
|
||||
9 -> {8} [color=green style=dashed];
|
||||
|
||||
Reference in New Issue
Block a user