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