mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Don't use PathV1.h in GraphWriter.cpp.
llvm-svn: 183988
This commit is contained in:
parent
4430795d30
commit
9f0c1fe5ad
@ -16,7 +16,6 @@
|
|||||||
#include "llvm/Support/CommandLine.h"
|
#include "llvm/Support/CommandLine.h"
|
||||||
#include "llvm/Support/FileSystem.h"
|
#include "llvm/Support/FileSystem.h"
|
||||||
#include "llvm/Support/Path.h"
|
#include "llvm/Support/Path.h"
|
||||||
#include "llvm/Support/PathV1.h"
|
|
||||||
#include "llvm/Support/Program.h"
|
#include "llvm/Support/Program.h"
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
@ -138,9 +137,7 @@ void llvm::DisplayGraph(StringRef FilenameRef, bool wait,
|
|||||||
|
|
||||||
#elif (HAVE_GV && (HAVE_DOT || HAVE_FDP || HAVE_NEATO || \
|
#elif (HAVE_GV && (HAVE_DOT || HAVE_FDP || HAVE_NEATO || \
|
||||||
HAVE_TWOPI || HAVE_CIRCO))
|
HAVE_TWOPI || HAVE_CIRCO))
|
||||||
sys::Path PSFilename = sys::Path(Filename);
|
std::string PSFilename = Filename + ".ps";
|
||||||
PSFilename.appendSuffix("ps");
|
|
||||||
|
|
||||||
std::string prog;
|
std::string prog;
|
||||||
|
|
||||||
// Set default grapher
|
// Set default grapher
|
||||||
@ -205,7 +202,7 @@ void llvm::DisplayGraph(StringRef FilenameRef, bool wait,
|
|||||||
args.push_back(0);
|
args.push_back(0);
|
||||||
|
|
||||||
ErrMsg.clear();
|
ErrMsg.clear();
|
||||||
if (!ExecGraphViewer(gv, args, PSFilename.str(), wait, ErrMsg))
|
if (!ExecGraphViewer(gv, args, PSFilename, wait, ErrMsg))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
#elif HAVE_DOTTY
|
#elif HAVE_DOTTY
|
||||||
|
Loading…
Reference in New Issue
Block a user