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

16 lines
412 B
Plaintext

digraph CFG {
node [fontname="Helvetica"];
n867 [label="START", shape=box];
n867 -> n869;
n869 [label="True", shape=box];
n869 -> n870;
n870 [label="False", shape=box];
n870 -> n871;
n871 [label="True || False", shape=box];
n871 -> n872;
n872 [label="<?>", shape=diamond];
n872 -> n876 [label="T"];
n876 [label="1", shape=box];
n872 -> n877 [label="F"];
n877 [label="0", shape=box];
}