Remove a use of sys::Path.

llvm-svn: 183979
This commit is contained in:
Rafael Espindola 2013-06-14 13:59:21 +00:00
parent be633908be
commit 9aa3d5d7b2
1 changed files with 3 additions and 2 deletions

View File

@ -11,7 +11,7 @@
//
//===----------------------------------------------------------------------===//
#include "llvm/Support/PathV1.h"
#include "llvm/Support/FileSystem.h"
#include "Windows.h"
#include <algorithm>
@ -354,7 +354,8 @@ static void Cleanup() {
if (FilesToRemove != NULL)
while (!FilesToRemove->empty()) {
llvm::sys::Path(FilesToRemove->back()).eraseFromDisk();
bool Existed;
llvm::sys::fs::remove(FilesToRemove->back(), Existed);
FilesToRemove->pop_back();
}