[llvm] r342503 - [bugpoint] Revert r318459
Don Hinton via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 18 11:39:28 PDT 2018
Author: dhinton
Date: Tue Sep 18 11:39:27 2018
New Revision: 342503
URL: http://llvm.org/viewvc/llvm-project?rev=342503&view=rev
Log:
[bugpoint] Revert r318459
Summary: Revert r318459 which introduced a TempFile scoping bug.
Differential Revision: https://reviews.llvm.org/D51836
Modified:
llvm/trunk/tools/bugpoint/ExecutionDriver.cpp
Modified: llvm/trunk/tools/bugpoint/ExecutionDriver.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/bugpoint/ExecutionDriver.cpp?rev=342503&r1=342502&r2=342503&view=diff
==============================================================================
--- llvm/trunk/tools/bugpoint/ExecutionDriver.cpp (original)
+++ llvm/trunk/tools/bugpoint/ExecutionDriver.cpp Tue Sep 18 11:39:27 2018
@@ -299,26 +299,32 @@ Expected<std::string> BugDriver::execute
if (!AI)
AI = Interpreter;
assert(AI && "Interpreter should have been created already!");
+ bool CreatedBitcode = false;
if (BitcodeFile.empty()) {
// Emit the program to a bitcode file...
- auto File =
- sys::fs::TempFile::create(OutputPrefix + "-test-program-%%%%%%%.bc");
- if (!File) {
- errs() << ToolName
- << ": Error making unique filename: " << toString(File.takeError())
+ SmallString<128> UniqueFilename;
+ int UniqueFD;
+ std::error_code EC = sys::fs::createUniqueFile(
+ OutputPrefix + "-test-program-%%%%%%%.bc", UniqueFD, UniqueFilename);
+ if (EC) {
+ errs() << ToolName << ": Error making unique filename: " << EC.message()
<< "!\n";
exit(1);
}
- DiscardTemp Discard{*File};
- BitcodeFile = File->TmpName;
+ BitcodeFile = UniqueFilename.str();
- if (writeProgramToFile(File->FD, Program)) {
+ if (writeProgramToFile(BitcodeFile, UniqueFD, Program)) {
errs() << ToolName << ": Error emitting bitcode to file '" << BitcodeFile
<< "'!\n";
exit(1);
}
+ CreatedBitcode = true;
}
+ // Remove the temporary bitcode file when we are done.
+ std::string BitcodePath(BitcodeFile);
+ FileRemover BitcodeFileRemover(BitcodePath, CreatedBitcode && !SaveTemps);
+
if (OutputFile.empty())
OutputFile = OutputPrefix + "-execution-output-%%%%%%%";
More information about the llvm-commits
mailing list