4bae133070
Update the graphviz tests accordingly. Fixes #22073. (Includes regression test for the issue.) (Factoring of aatch CFG code, Part 4.)
38 lines
903 B
Plaintext
38 lines
903 B
Plaintext
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;
|
|
}
|