* Add new DOTGraphTraits::addCustomGraphFeatures method

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4197 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2002-10-16 01:44:59 +00:00
parent ff5feedf28
commit 834a9d12f3
4 changed files with 26 additions and 0 deletions

View File

@ -72,7 +72,11 @@ public:
O << DOTTraits::getGraphProperties(G);
O << "\n";
// Emit all of the nodes in the graph...
writeNodes();
// Output any customizations on the graph
DOTTraits::addCustomGraphFeatures(G, *this);
}
~GraphWriter() {