Update code for other graph viewing programs too.

llvm-svn: 183920
This commit is contained in:
Rafael Espindola 2013-06-13 17:27:45 +00:00
parent ce61b1e5b1
commit 48944e7a9a
1 changed files with 3 additions and 3 deletions

View File

@ -100,8 +100,9 @@ ExecGraphViewer(StringRef ExecPath, std::vector<const char*> &args,
return true; return true;
} }
void llvm::DisplayGraph(StringRef Filename, bool wait, void llvm::DisplayGraph(StringRef FilenameRef, bool wait,
GraphProgram::Name program) { GraphProgram::Name program) {
std::string Filename = FilenameRef;
wait &= !ViewBackground; wait &= !ViewBackground;
std::string ErrMsg; std::string ErrMsg;
#if HAVE_GRAPHVIZ #if HAVE_GRAPHVIZ
@ -182,12 +183,11 @@ void llvm::DisplayGraph(StringRef Filename, bool wait,
#endif #endif
std::vector<const char*> args; std::vector<const char*> args;
std::string FilenameStr = Filename;
args.push_back(prog.c_str()); args.push_back(prog.c_str());
args.push_back("-Tps"); args.push_back("-Tps");
args.push_back("-Nfontname=Courier"); args.push_back("-Nfontname=Courier");
args.push_back("-Gsize=7.5,10"); args.push_back("-Gsize=7.5,10");
args.push_back(FilenameStr.c_str()); args.push_back(Filename.c_str());
args.push_back("-o"); args.push_back("-o");
args.push_back(PSFilename.c_str()); args.push_back(PSFilename.c_str());
args.push_back(0); args.push_back(0);