1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-04-12 07:37:34 +00:00

Don't emit braces around something without outgoing edges

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4225 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-10-18 14:55:44 +00:00
parent dc062d3e6c
commit 137d399fae
2 changed files with 10 additions and 6 deletions
include
Support
llvm/Support

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

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