talk-2018-11-uppsala/src/cfg/cfg.dot

9 lines
124 B
Plaintext
Raw Normal View History

2018-11-08 19:37:04 +01:00
digraph {
while_beg -> X;
X -> A;
X -> B;
A -> while_end;
B -> while_end;
while_end -> while_beg;
}