diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-17 19:21:38 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-17 19:21:38 +0000 |
commit | 34889cabcd3e417aa7b0e4e50fb192afa890cd26 (patch) | |
tree | c20fafaa434680a7db9412edd28d7d40d8e27df5 /llvm/tools/bugpoint/ToolRunner.h | |
parent | 4b226bd403e42fc4672296833161bf17edb831a0 (diff) | |
download | bcm5719-llvm-34889cabcd3e417aa7b0e4e50fb192afa890cd26.tar.gz bcm5719-llvm-34889cabcd3e417aa7b0e4e50fb192afa890cd26.zip |
Don't use PathV1.h in ToolRunner.h.
llvm-svn: 184107
Diffstat (limited to 'llvm/tools/bugpoint/ToolRunner.h')
-rw-r--r-- | llvm/tools/bugpoint/ToolRunner.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/tools/bugpoint/ToolRunner.h b/llvm/tools/bugpoint/ToolRunner.h index 80416d8a390..bc2be46b32c 100644 --- a/llvm/tools/bugpoint/ToolRunner.h +++ b/llvm/tools/bugpoint/ToolRunner.h @@ -21,7 +21,6 @@ #include "llvm/Support/CommandLine.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/Path.h" -#include "llvm/Support/PathV1.h" #include "llvm/Support/SystemUtils.h" #include <exception> #include <vector> @@ -122,7 +121,7 @@ public: /// fails, it sets Error, otherwise, this function returns the type of code /// emitted. virtual GCC::FileType OutputCode(const std::string &Bitcode, - sys::Path &OutFile, std::string &Error, + std::string &OutFile, std::string &Error, unsigned Timeout = 0, unsigned MemoryLimit = 0) { Error = "OutputCode not supported by this AbstractInterpreter!"; @@ -189,7 +188,7 @@ public: /// fails, it sets Error, otherwise, this function returns the type of code /// emitted. virtual GCC::FileType OutputCode(const std::string &Bitcode, - sys::Path &OutFile, std::string &Error, + std::string &OutFile, std::string &Error, unsigned Timeout = 0, unsigned MemoryLimit = 0); }; |