summary refs log tree commit diff
path: root/src/test/run-make/graphviz-flowgraph/f17.dot-expected.dot
blob: c78224c00df8a552bd7cb300ac081362003e0ca0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
digraph block {
    N0[label="entry"];
    N1[label="exit"];
    N2[label="expr 1i"];
    N3[label="expr 7i"];
    N4[label="expr 17i"];
    N5[label="expr [1i, 7i, 17i]"];
    N6[label="local _v"];
    N7[label="stmt let _v = [1i, 7i, 17i];"];
    N8[label="block { let _v = [1i, 7i, 17i]; }"];
    N0 -> N2;
    N2 -> N3;
    N3 -> N4;
    N4 -> N5;
    N5 -> N6;
    N6 -> N7;
    N7 -> N8;
    N8 -> N1;
}