forked from OSchip/llvm-project
Make the ScheduleDAG's GraphRoot edge be blue and dashed too, like
the SelectionDAG's. llvm-svn: 54129
This commit is contained in:
parent
2ce6f2ad5e
commit
68e45a361b
|
@ -346,7 +346,8 @@ namespace llvm {
|
|||
GW.emitSimpleNode(0, "plaintext=circle", "GraphRoot");
|
||||
const SDNode *N = G->DAG.getRoot().Val;
|
||||
if (N && N->getNodeId() != -1)
|
||||
GW.emitEdge(0, -1, &G->SUnits[N->getNodeId()], -1, "");
|
||||
GW.emitEdge(0, -1, &G->SUnits[N->getNodeId()], -1,
|
||||
"color=blue,style=dashed");
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue