mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Don't emit braces around something without outgoing edges
llvm-svn: 4225
This commit is contained in:
parent
bd5e932aeb
commit
3e2fb69b49
@ -141,7 +141,9 @@ public:
|
||||
O << "\tNode" << ID << "[ ";
|
||||
if (!Attr.empty())
|
||||
O << Attr << ",";
|
||||
O << " label =\"{" << DOT::EscapeString(Label);
|
||||
O << " label =\"";
|
||||
if (NumEdgeSources) O << "{";
|
||||
O << DOT::EscapeString(Label);
|
||||
if (NumEdgeSources) {
|
||||
O << "|{";
|
||||
|
||||
@ -149,9 +151,9 @@ public:
|
||||
if (i) O << "|";
|
||||
O << "<g" << i << ">";
|
||||
}
|
||||
O << "}";
|
||||
O << "}}";
|
||||
}
|
||||
O << "}\"];\n";
|
||||
O << "\"];\n";
|
||||
}
|
||||
|
||||
/// emitEdge - Output an edge from a simple node into the graph...
|
||||
|
Loading…
Reference in New Issue
Block a user