summary refs log tree commit diff
path: root/src/test/run-make/graphviz-flowgraph/f07.dot-expected.dot
blob: 51c6b14e1deedb01fed39975d73f22ed15b113cf (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
31
32
33
34
35
36
37
digraph block {
    N0[label="entry"];
    N1[label="exit"];
    N2[label="expr 7"];
    N3[label="expr 77"];
    N4[label="expr 777"];
    N5[label="expr 7777"];
    N6[label="expr [7, 77, 777, 7777]"];
    N7[label="expr match [7, 77, 777, 7777] { [x, y, ..] => x + y, }"];
    N8[label="(dummy_node)"];
    N9[label="local x"];
    N10[label="local y"];
    N11[label="pat .."];
    N12[label="pat [x, y, ..]"];
    N13[label="expr x"];
    N14[label="expr y"];
    N15[label="expr x + y"];
    N16[label="stmt match [7, 77, 777, 7777] { [x, y, ..] => x + y, };"];
    N17[label="block { match [7, 77, 777, 7777] { [x, y, ..] => x + y, }; }"];
    N0 -> N2;
    N2 -> N3;
    N3 -> N4;
    N4 -> N5;
    N5 -> N6;
    N6 -> N9;
    N9 -> N10;
    N10 -> N11;
    N11 -> N12;
    N12 -> N8;
    N8 -> N13;
    N13 -> N14;
    N14 -> N15;
    N15 -> N7;
    N7 -> N16;
    N16 -> N17;
    N17 -> N1;
}