Use gv's --spartan option, which trades away an extra row of UI buttons

for more space for displaying the graph.

llvm-svn: 49730
This commit is contained in:
Dan Gohman 2008-04-15 17:27:05 +00:00
parent a5eb45bcfd
commit 53d3241b52
1 changed files with 1 additions and 0 deletions

View File

@ -57,6 +57,7 @@ void llvm::DisplayGraph(const sys::Path &Filename) {
sys::Path gv(LLVM_PATH_GV); sys::Path gv(LLVM_PATH_GV);
args.clear(); args.clear();
args.push_back(gv.c_str()); args.push_back(gv.c_str());
args.push_back("--spartan");
args.push_back(PSFilename.c_str()); args.push_back(PSFilename.c_str());
args.push_back(0); args.push_back(0);