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

16 lines
412 B
Plaintext

digraph CFG {
node [fontname="Helvetica"];
n856 [label="START", shape=box];
n856 -> n858;
n858 [label="True", shape=box];
n858 -> n859;
n859 [label="False", shape=box];
n859 -> n860;
n860 [label="True && False", shape=box];
n860 -> n861;
n861 [label="<?>", shape=diamond];
n861 -> n865 [label="T"];
n865 [label="1", shape=box];
n861 -> n866 [label="F"];
n866 [label="0", shape=box];
}