Don't rotate paper.
authorChris Lattner <sabre@nondot.org>
Mon, 7 Oct 2002 22:37:03 +0000 (22:37 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 7 Oct 2002 22:37:03 +0000 (22:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4066 91177308-0d34-0410-b5e6-96231b3b80d8

include/Support/GraphWriter.h
include/llvm/Support/GraphWriter.h

index 01851d512f37983c6ff043cb3d21c158b8e2cc36..7742aff40e8d6a266b281a917e9237a191023c94 100644 (file)
@@ -55,8 +55,7 @@ std::ostream &WriteGraph(std::ostream &O, const GraphType &G) {
   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())
index 01851d512f37983c6ff043cb3d21c158b8e2cc36..7742aff40e8d6a266b281a917e9237a191023c94 100644 (file)
@@ -55,8 +55,7 @@ std::ostream &WriteGraph(std::ostream &O, const GraphType &G) {
   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())