1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Don't emit braces around something without outgoing edges

llvm-svn: 4225
This commit is contained in:
Chris Lattner 2002-10-18 14:55:44 +00:00
parent bd5e932aeb
commit 3e2fb69b49

View File

@ -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...