summary refs log tree commit diff
path: root/src/test/run-make/graphviz-flowgraph/f11.dot-expected.dot
blob: 9b66fd581cb43a5f6fca84b9f4eec29f2b7ea233 (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
digraph block {
    N0[label="entry"];
    N1[label="exit"];
    N2[label="expr 11"];
    N3[label="local mut _x"];
    N4[label="stmt let mut _x = 11;"];
    N5[label="(dummy_node)"];
    N6[label="expr loop  { _x -= 1; }"];
    N7[label="expr 1"];
    N8[label="expr _x"];
    N9[label="expr _x -= 1"];
    N10[label="stmt _x -= 1;"];
    N11[label="block { _x -= 1; }"];
    N12[label="stmt loop  { _x -= 1; }"];
    N13[label="expr \"unreachable\""];
    N14[label="stmt \"unreachable\";"];
    N15[label="block { let mut _x = 11; loop  { _x -= 1; } \"unreachable\"; }"];
    N0 -> N2;
    N2 -> N3;
    N3 -> N4;
    N4 -> N5;
    N5 -> N7;
    N7 -> N8;
    N8 -> N9;
    N9 -> N10;
    N10 -> N11;
    N11 -> N5;
    N6 -> N12;
    N12 -> N13;
    N13 -> N14;
    N14 -> N15;
    N15 -> N1;
}