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