File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -247,12 +247,12 @@ class PrintOpPass : public impl::ViewOpGraphBase<PrintOpPass> {
247
247
248
248
edges.push_back (strFromOs ([&](raw_ostream &os) {
249
249
os << " v" << n1.id ;
250
- if (!port.empty ())
250
+ if (!port.empty () && !n1. clusterId )
251
251
// Attach edge to south compass point of the result
252
252
os << " :res" << port << " :s" ;
253
253
os << " -> " ;
254
254
os << " v" << n2.id ;
255
- if (!port.empty ())
255
+ if (!port.empty () && !n2. clusterId )
256
256
// Attach edge to north compass point of the operand
257
257
os << " :arg" << port << " :n" ;
258
258
emitAttrList (os, attrs);
Original file line number Diff line number Diff line change 33
33
// DFG: v9:res_0:s -> v9:arg_0:n[style = solid];
34
34
// DFG: v15:res_2:s -> v9:arg_2:n[style = solid];
35
35
// DFG: v9:res_0:s -> v14:arg_0:n[style = solid];
36
- // DFG: v11:res_1:s -> v14:arg_1:n[ltail = cluster_10, style = solid];
36
+ // DFG: v11 -> v14:arg_1:n[ltail = cluster_10, style = solid];
37
37
// DFG: v15:res_2:s -> v14:arg_2:n[style = solid];
38
38
// DFG: v16:res_3:s -> v14:arg_3:n[style = solid];
39
39
// DFG: v9:res_0:s -> v15:arg_0:n[style = solid];
Original file line number Diff line number Diff line change 20
20
// DFG: v[[TEST_RET:.*]] [{{.*}}label = "{{.*}}test.return
21
21
// DFG: v[[ARG0]]:res_arg0:s -> v[[TEST_BR]]:arg_arg0:n
22
22
// DFG: v[[CONST10]]:res_c10_i32:s -> v[[TEST_BR]]
23
- // DFG: v[[ANCHOR]]:res_1_0:s -> v[[TEST_RET]]:arg_1_0:n[ltail = [[CLUSTER_MERGE_BLOCKS]], style = solid];
24
- // DFG: v[[ANCHOR]]:res_1_1:s -> v[[TEST_RET]]:arg_1_1:n[ltail = [[CLUSTER_MERGE_BLOCKS]], style = solid];
23
+ // DFG: v[[ANCHOR]] -> v[[TEST_RET]]:arg_1_0:n[ltail = [[CLUSTER_MERGE_BLOCKS]], style = solid];
24
+ // DFG: v[[ANCHOR]] -> v[[TEST_RET]]:arg_1_1:n[ltail = [[CLUSTER_MERGE_BLOCKS]], style = solid];
25
25
26
26
// CFG-LABEL: digraph G {
27
27
// CFG: subgraph {{.*}} {
You can’t perform that action at this time.
0 commit comments