Do not leave a bunch of crud lying around

llvm-svn: 10307
This commit is contained in:
Chris Lattner 2003-12-07 02:31:03 +00:00
parent b762ddbdf1
commit 233b069113
1 changed files with 2 additions and 0 deletions

View File

@ -24,6 +24,7 @@
#include "llvm/Transforms/Utils/Cloning.h"
#include "llvm/Target/TargetData.h"
#include "Support/CommandLine.h"
#include "Support/FileUtilities.h"
using namespace llvm;
namespace llvm {
@ -129,6 +130,7 @@ Module *BugDriver::performFinalCleanups(Module *M, bool MayModifySemantics) {
<< Filename << "'!\n";
exit(1);
}
removeFile(Filename);
}
return M;
}