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