From 5ea766a6acfff7da7f6c8a4d545616446f081d5e Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Fri, 6 Mar 2009 18:35:43 +0000 Subject: [PATCH] Fix thinko. *cough* ofcourseItestedit *cough* git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66283 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/ccc/ccclib/Driver.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tools/ccc/ccclib/Driver.py b/tools/ccc/ccclib/Driver.py index 25984dd74e..e6aba65fc7 100644 --- a/tools/ccc/ccclib/Driver.py +++ b/tools/ccc/ccclib/Driver.py @@ -233,9 +233,8 @@ class Driver(object): self.removeFiles(self.resultFiles, failOnError=True) raise finally: - for f in self.tempFiles: - # Ignore failures in removing temporary files - self.removeFiles(self.resultFiles, failOnError=False) + # Ignore failures in removing temporary files + self.removeFiles(self.tempFiles, failOnError=False) def removeFiles(self, fileList, failOnError=False): for f in fileList: -- 2.40.0