[llvm-commits] CVS: llvm/include/llvm/Support/GraphWriter.h 
    Jim Laskey 
    jlaskey at apple.com
       
    Fri Sep 30 12:12:05 PDT 2005
    
    
  
Changes in directory llvm/include/llvm/Support:
GraphWriter.h updated: 1.23 -> 1.24
---
Log message:
Add the node name (thus the address) to node label.
---
Diffs of the changes:  (+1 -1)
 GraphWriter.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/include/llvm/Support/GraphWriter.h
diff -u llvm/include/llvm/Support/GraphWriter.h:1.23 llvm/include/llvm/Support/GraphWriter.h:1.24
--- llvm/include/llvm/Support/GraphWriter.h:1.23	Thu Apr 21 15:44:59 2005
+++ llvm/include/llvm/Support/GraphWriter.h	Fri Sep 30 14:11:53 2005
@@ -134,7 +134,7 @@
     if (DOTTraits::renderGraphFromBottomUp())
       O << DOT::EscapeString(DOTTraits::getNodeLabel(Node, G));
 
-    O << "}\"];\n";   // Finish printing the "node" line
+    O << "|\\N}\"];\n";   // Finish printing the "node" line
 
     // Output all of the edges now
     EI = GTraits::child_begin(Node);
    
    
More information about the llvm-commits
mailing list