150
|
1 // RUN: %exploded_graph_rewriter %s | FileCheck %s -check-prefix=LIGHT
|
|
2 // RUN: %exploded_graph_rewriter --dark %s | FileCheck %s -check-prefixes=DARK
|
|
3
|
|
4 // FIXME: Substitution doesn't seem to work on Windows.
|
|
5 // UNSUPPORTED: system-windows
|
|
6
|
|
7 Node0x1 [shape=record,label=
|
|
8 "{{ "state_id": 0, "program_state": null, "program_points": [
|
|
9 {
|
|
10 "kind": "BlockEntrance", "block_id": 1,
|
|
11 "terminator": null, "term_kind": null,
|
|
12 "tag": null, "node_id": 1,
|
|
13 "has_report": 0, "is_sink": 0
|
|
14 }
|
|
15 ]}\l}"];
|
|
16
|
|
17 // LIGHT: Node0x1 -> Node0x2;
|
|
18 // DARK: Node0x1 -> Node0x2 [color="white"];
|
|
19 Node0x1 -> Node0x2;
|
|
20
|
|
21 Node0x2 [shape=record,label=
|
|
22 "{{ "state_id": 0, "program_state": null, "program_points": [
|
|
23 {
|
|
24 "kind": "BlockEntrance", "block_id": 1,
|
|
25 "terminator": null, "term_kind": null,
|
|
26 "tag": null, "node_id": 1,
|
|
27 "has_report": 0, "is_sink": 0
|
|
28 }
|
|
29 ]}\l}"];
|