19 lines
567 B
Plaintext
19 lines
567 B
Plaintext
digraph CFG {
|
|
node [fontname="Helvetica"];
|
|
n842 [label="2", shape=box];
|
|
n842 -> n843;
|
|
n843 [label="CALL g", shape=box, style=filled, color=orange];
|
|
n843 -> n836;
|
|
n836 [label="START g(x, y)", shape=box, style=filled, color=green];
|
|
n836 -> n839;
|
|
n839 [label="3", shape=box];
|
|
n839 -> n840;
|
|
n840 [label="y = 3", shape=box];
|
|
n840 -> n841;
|
|
n841 [label="x", shape=box];
|
|
n841 -> n837;
|
|
n837 [label="END g(x, y)", shape=box, style=filled, color=green];
|
|
n837 -> n845;
|
|
n845 [label="RET g", shape=box, style=filled, color=orange];
|
|
n843 -> n845;
|
|
} |