[llvm-commits] [llvm] r49730 - /llvm/trunk/lib/Support/GraphWriter.cpp

Dan Gohman gohman at apple.com
Tue Apr 15 10:27:05 PDT 2008


Author: djg
Date: Tue Apr 15 12:27:05 2008
New Revision: 49730

URL: http://llvm.org/viewvc/llvm-project?rev=49730&view=rev
Log:
Use gv's --spartan option, which trades away an extra row of UI buttons
for more space for displaying the graph.

Modified:
    llvm/trunk/lib/Support/GraphWriter.cpp

Modified: llvm/trunk/lib/Support/GraphWriter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/GraphWriter.cpp?rev=49730&r1=49729&r2=49730&view=diff

==============================================================================
--- llvm/trunk/lib/Support/GraphWriter.cpp (original)
+++ llvm/trunk/lib/Support/GraphWriter.cpp Tue Apr 15 12:27:05 2008
@@ -57,6 +57,7 @@
     sys::Path gv(LLVM_PATH_GV);
     args.clear();
     args.push_back(gv.c_str());
+    args.push_back("--spartan");
     args.push_back(PSFilename.c_str());
     args.push_back(0);
     





More information about the llvm-commits mailing list