[llvm-commits] CVS: llvm/include/Support/GraphWriter.h

Chris Lattner lattner at cs.uiuc.edu
Mon Oct 7 17:38:01 PDT 2002


Changes in directory llvm/include/Support:

GraphWriter.h updated: 1.1 -> 1.2

---
Log message:

Don't rotate paper.


---
Diffs of the changes:

Index: llvm/include/Support/GraphWriter.h
diff -u llvm/include/Support/GraphWriter.h:1.1 llvm/include/Support/GraphWriter.h:1.2
--- llvm/include/Support/GraphWriter.h:1.1	Mon Oct  7 13:37:10 2002
+++ llvm/include/Support/GraphWriter.h	Mon Oct  7 17:37:03 2002
@@ -55,8 +55,7 @@
   typedef typename GTraits::NodeType NodeType;
 
   O << "digraph foo {\n"         // Graph name doesn't matter
-    << "\tsize=\"10,7.5\";\n"    // Size to fit on a page
-    << "\trotate=\"90\";\n";     // Orient correctly
+    << "\tsize=\"7.5,10\";\n";   // Size to fit on a page
 
   std::string GraphName = DOTTraits::getGraphName(G);
   if (!GraphName.empty())





More information about the llvm-commits mailing list