Files
Construction-of-Compilers/Project-02-03-04/mistraltests/after/simple_if_cfg_after.dot
2026-01-22 20:26:41 +01:00

12 lines
302 B
Plaintext

digraph CFG {
node [fontname="Helvetica"];
n847 [label="START", shape=box];
n847 -> n849;
n849 [label="True", shape=box];
n849 -> n850;
n850 [label="<?>", shape=diamond];
n850 -> n854 [label="T"];
n854 [label="1", shape=box];
n850 -> n855 [label="F"];
n855 [label="0", shape=box];
}