eraseFromDisk no longer throws.

llvm-svn: 75139
This commit is contained in:
Chris Lattner 2009-07-09 16:17:28 +00:00
parent ab81d2f5e9
commit 433cf71144
1 changed files with 1 additions and 4 deletions

View File

@ -136,10 +136,7 @@ static void Cleanup() {
if (FilesToRemove != NULL)
while (!FilesToRemove->empty()) {
try {
FilesToRemove->back().eraseFromDisk();
} catch (...) {
}
FilesToRemove->back().eraseFromDisk();
FilesToRemove->pop_back();
}