From: Chris Lattner Date: Wed, 12 Nov 2003 04:58:19 +0000 (+0000) Subject: Print return nodes for graphs with multiple functions in them correctly X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d8ea8a5027680023d6e12cd5f5ffdc8fabf3c654;p=oota-llvm.git Print return nodes for graphs with multiple functions in them correctly git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9914 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/DataStructure/Printer.cpp b/lib/Analysis/DataStructure/Printer.cpp index 9902906e19a..d6f6c02cc21 100644 --- a/lib/Analysis/DataStructure/Printer.cpp +++ b/lib/Analysis/DataStructure/Printer.cpp @@ -132,12 +132,12 @@ struct DOTGraphTraits : public DefaultDOTGraphTraits { else Label = I->first->getName() + " ret node"; // Output the return node... - GW.emitSimpleNode((void*)1, "plaintext=circle", Label); + GW.emitSimpleNode((void*)I->first, "plaintext=circle", Label); // Add edge from return node to real destination int RetEdgeDest = I->second.getOffset() >> DS::PointerShift;; if (RetEdgeDest == 0) RetEdgeDest = -1; - GW.emitEdge((void*)1, -1, I->second.getNode(), + GW.emitEdge((void*)I->first, -1, I->second.getNode(), RetEdgeDest, "arrowtail=tee,color=gray63"); }