From: Chris Lattner Date: Fri, 2 Apr 2004 05:33:06 +0000 (+0000) Subject: If the program returns a non-zero exit value, don't leave files laying X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=58d84ced5f7367335e43ea54e5daf32a4fdaefb6;p=oota-llvm.git If the program returns a non-zero exit value, don't leave files laying around git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12603 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/bugpoint/ExecutionDriver.cpp b/tools/bugpoint/ExecutionDriver.cpp index 3d4e61058ff..969eaabaf6e 100644 --- a/tools/bugpoint/ExecutionDriver.cpp +++ b/tools/bugpoint/ExecutionDriver.cpp @@ -265,8 +265,11 @@ bool BugDriver::diffProgram(const std::string &BytecodeFile, &ProgramExitedNonzero); // If we're checking the program exit code, assume anything nonzero is bad. - if (CheckProgramExitCode && ProgramExitedNonzero) + if (CheckProgramExitCode && ProgramExitedNonzero) { + removeFile(Output); + if (RemoveBytecode) removeFile(BytecodeFile); return true; + } std::string Error; bool FilesDifferent = false;