27 lines
852 B
Plaintext
27 lines
852 B
Plaintext
digraph CFG {
|
|
node [fontname="Helvetica"];
|
|
n689 [label="START", shape=ellipse, style=filled, color=gray];
|
|
n689 -> n698;
|
|
n698 [label="10", shape=box];
|
|
n698 -> n699;
|
|
n699 [label="8", shape=box];
|
|
n699 -> n700;
|
|
n700 [label="CALL func", shape=box, style=filled, color=orange];
|
|
n700 -> n691;
|
|
n700 -> n702;
|
|
n691 [label="START func(a, b)", shape=ellipse, style=filled, color=green];
|
|
n691 -> n694;
|
|
n694 [label="b", shape=box];
|
|
n694 -> n695;
|
|
n695 [label="1", shape=box];
|
|
n695 -> n696;
|
|
n696 [label="b + 1", shape=box];
|
|
n696 -> n697;
|
|
n697 [label="a = (b + 1)", shape=box];
|
|
n697 -> n692;
|
|
n692 [label="END func(a, b)", shape=ellipse, style=filled, color=green];
|
|
n692 -> n702;
|
|
n702 [label="RET func", shape=box, style=filled, color=orange];
|
|
n702 -> n690;
|
|
n690 [label="END", shape=ellipse, style=filled, color=gray];
|
|
} |