diff options
author | Hal Finkel <hfinkel@anl.gov> | 2013-06-28 16:37:52 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2013-06-28 16:37:52 +0000 |
commit | e852add40ed7d93da626d4e2286c840afb9d98d8 (patch) | |
tree | 8d171b2a3bc2f6dfbc14f874a5d21cdcb8e8bcc3 /llvm/tools/bugpoint/ExecutionDriver.cpp | |
parent | 3b27b992ca168e128077754bafda944920869c08 (diff) | |
download | bcm5719-llvm-e852add40ed7d93da626d4e2286c840afb9d98d8.tar.gz bcm5719-llvm-e852add40ed7d93da626d4e2286c840afb9d98d8.zip |
Fix bugpoint execution/reference output file name
sys::fs::unique_file will now loop infinitely if provided with a file name
without '%' characters and the input file already exists. As a result, bugpoint
cannot use a fixed file name for the execution output (including the reference
output).
llvm-svn: 185166
Diffstat (limited to 'llvm/tools/bugpoint/ExecutionDriver.cpp')
-rw-r--r-- | llvm/tools/bugpoint/ExecutionDriver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/bugpoint/ExecutionDriver.cpp b/llvm/tools/bugpoint/ExecutionDriver.cpp index 6edf2335f6c..270dab23171 100644 --- a/llvm/tools/bugpoint/ExecutionDriver.cpp +++ b/llvm/tools/bugpoint/ExecutionDriver.cpp @@ -328,7 +328,7 @@ std::string BugDriver::executeProgram(const Module *Program, FileRemover BitcodeFileRemover(BitcodePath, CreatedBitcode && !SaveTemps); - if (OutputFile.empty()) OutputFile = OutputPrefix + "-execution-output"; + if (OutputFile.empty()) OutputFile = OutputPrefix + "-execution-output-%%%%%%%"; // Check to see if this is a valid output filename... SmallString<128> UniqueFile; |