Fix a confusing bug that caused return value and callee pointers to not
authorChris Lattner <sabre@nondot.org>
Mon, 21 Oct 2002 13:47:57 +0000 (13:47 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 21 Oct 2002 13:47:57 +0000 (13:47 +0000)
be printed!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4248 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/DataStructure/Printer.cpp

index 8b6e362cbc15ec115764b151e29a4f0d4811b637..35f491dd5cfefa118b12f9db71d41744405a2946 100644 (file)
@@ -112,6 +112,16 @@ struct DOTGraphTraits<const DSGraph*> : public DefaultDOTGraphTraits {
       const DSCallSite &Call = FCs[i];
       GW.emitSimpleNode(&Call, "shape=record", "call", Call.getNumPtrArgs()+2);
 
+      if (DSNode *N = Call.getRetVal().getNode()) {
+        int EdgeDest = Call.getRetVal().getOffset();
+        if (EdgeDest == 0) EdgeDest = -1;
+        GW.emitEdge(&Call, 0, N, EdgeDest, "color=gray63");
+      }
+      if (DSNode *N = Call.getCallee().getNode()) {
+        int EdgeDest = Call.getCallee().getOffset();
+        if (EdgeDest == 0) EdgeDest = -1;
+        GW.emitEdge(&Call, 1, N, EdgeDest, "color=gray63");
+      }
       for (unsigned j = 0, e = Call.getNumPtrArgs(); j != e; ++j)
         if (DSNode *N = Call.getPtrArg(j).getNode()) {
           int EdgeDest = Call.getPtrArg(j).getOffset();