X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FSupport%2FGraphWriter.cpp;h=aad1818372a35bc59f0d4e81f438342328acf085;hb=befc9c16fae1719cafe9f54ab2b67219db44dc11;hp=31d8d797bedbbb49c7335587d5a2b8ce021e7c99;hpb=9ba8a76f8baaa1092d60ccfbc04e7efdc207c98f;p=oota-llvm.git diff --git a/lib/Support/GraphWriter.cpp b/lib/Support/GraphWriter.cpp index 31d8d797bed..aad1818372a 100644 --- a/lib/Support/GraphWriter.cpp +++ b/lib/Support/GraphWriter.cpp @@ -2,8 +2,8 @@ // // The LLVM Compiler Infrastructure // -// This file was developed by the LLVM research group and is distributed under -// the University of Illinois Open Source License. See LICENSE.TXT for details. +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // @@ -57,6 +57,7 @@ void llvm::DisplayGraph(const sys::Path &Filename) { 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); @@ -70,6 +71,7 @@ void llvm::DisplayGraph(const sys::Path &Filename) { sys::Path dotty(LLVM_PATH_DOTTY); std::vector args; + args.push_back(dotty.c_str()); args.push_back(Filename.c_str()); args.push_back(0);