summary refs log tree commit diff
path: root/src/test/run-make/graphviz-flowgraph/f08.dot-expected.dot
blob: 61a708cd9ccd4c1b15276a3a1538d572e3fac4ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
digraph block {
    N0[label="entry"];
    N1[label="exit"];
    N2[label="expr 8"];
    N3[label="local x"];
    N4[label="local _y"];
    N5[label="expr x"];
    N6[label="expr 88"];
    N7[label="expr x > 88"];
    N8[label="expr 888"];
    N9[label="expr _y"];
    N10[label="expr _y = 888"];
    N11[label="block { _y = 888; }"];
    N12[label="expr if x > 88 { _y = 888; }"];
    N13[label="block { let x = 8; let _y; if x > 88 { _y = 888; } }"];
    N0 -> N2;
    N2 -> N3;
    N3 -> N4;
    N4 -> N5;
    N5 -> N6;
    N6 -> N7;
    N7 -> N8;
    N8 -> N9;
    N9 -> N10;
    N10 -> N11;
    N7 -> N12;
    N11 -> N12;
    N12 -> N13;
    N13 -> N1;
}