talk-2019-10-OOPSLA19/src/cfg/cfg.dot
2018-11-08 19:37:04 +01:00

9 lines
124 B
Plaintext

digraph {
while_beg -> X;
X -> A;
X -> B;
A -> while_end;
B -> while_end;
while_end -> while_beg;
}