rust/src/test/run-make/graphviz-flowgraph/f04.dot-expected.dot

14 lines
262 B
Plaintext
Raw Normal View History

digraph block {
N0[label="entry"];
N1[label="exit"];
2014-12-05 18:12:25 -08:00
N2[label="expr 4is"];
N3[label="local _x"];
2014-12-05 18:12:25 -08:00
N4[label="stmt let _x = 4is;"];
N5[label="block { let _x = 4is; }"];
N0 -> N2;
N2 -> N3;
N3 -> N4;
N4 -> N5;
N5 -> N1;
}