From: Dan Gohman Date: Mon, 24 Aug 2009 03:23:12 +0000 (+0000) Subject: Unbreak the build for HAVE_GV platforms. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=2d5e3acd2a69070c4e3550e014a54626e18bf12c;p=oota-llvm.git Unbreak the build for HAVE_GV platforms. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79883 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/GraphWriter.cpp b/lib/Support/GraphWriter.cpp index 91a7bb3d341..c8bca6ef887 100644 --- a/lib/Support/GraphWriter.cpp +++ b/lib/Support/GraphWriter.cpp @@ -125,7 +125,7 @@ void llvm::DisplayGraph(const sys::Path &Filename, bool wait, args.push_back(PSFilename.c_str()); args.push_back(0); - errs() << "Running '" << prog << "' program... "; + errs() << "Running '" << prog.str() << "' program... "; if (sys::Program::ExecuteAndWait(prog, &args[0], 0, 0, 0, 0, &ErrMsg)) { errs() << "Error viewing graph " << Filename.str() << ": '" @@ -150,7 +150,7 @@ void llvm::DisplayGraph(const sys::Path &Filename, bool wait, else { sys::Program::ExecuteNoWait(gv, &args[0],0,0,0,&ErrMsg); errs() << "Remember to erase graph files: " << Filename.str() << " " - << PSFilename << "\n"; + << PSFilename.str() << "\n"; } } #elif HAVE_DOTTY