Files
kotlin-fork/compiler/testData/cfg/incrementAtTheEnd.instructions
T
2013-12-05 13:00:44 +04:00

22 lines
703 B
Plaintext

== foo ==
fun foo() {
var i = 1
i++
}
---------------------
L0:
<START> NEXT:[v(var i = 1)] PREV:[]
v(var i = 1) NEXT:[r(1)] PREV:[<START>]
r(1) NEXT:[w(i)] PREV:[v(var i = 1)]
w(i) NEXT:[r(i)] PREV:[r(1)]
r(i) NEXT:[call(++, inc)] PREV:[w(i)]
call(++, inc) NEXT:[w(i)] PREV:[r(i)]
w(i) NEXT:[<END>] PREV:[call(++, inc)]
L1:
<END> NEXT:[<SINK>] PREV:[w(i)]
error:
<ERROR> NEXT:[<SINK>] PREV:[]
sink:
<SINK> NEXT:[] PREV:[<ERROR>, <END>]
=====================