diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-14 15:24:56 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-14 15:24:56 +0000 |
commit | 5023632c9ae80fa0b36a792587da36a8c69d80d3 (patch) | |
tree | 96003110c0f34f766db699226bc6b38c6cd59bbc /llvm/lib/Support/FileUtilities.cpp | |
parent | 8d28646db6ca328b2e33fee74d1aebee0f5a6966 (diff) | |
download | bcm5719-llvm-5023632c9ae80fa0b36a792587da36a8c69d80d3.tar.gz bcm5719-llvm-5023632c9ae80fa0b36a792587da36a8c69d80d3.zip |
Remove a use of PathV1.h.
llvm-svn: 183982
Diffstat (limited to 'llvm/lib/Support/FileUtilities.cpp')
-rw-r--r-- | llvm/lib/Support/FileUtilities.cpp | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/llvm/lib/Support/FileUtilities.cpp b/llvm/lib/Support/FileUtilities.cpp index f13c04b961e..6339e005461 100644 --- a/llvm/lib/Support/FileUtilities.cpp +++ b/llvm/lib/Support/FileUtilities.cpp @@ -17,7 +17,6 @@ #include "llvm/ADT/SmallString.h" #include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/Path.h" -#include "llvm/Support/PathV1.h" #include "llvm/Support/raw_ostream.h" #include "llvm/Support/system_error.h" #include <cctype> @@ -176,20 +175,15 @@ int llvm::DiffFilesWithTolerance(StringRef NameA, StringRef NameB, double AbsTol, double RelTol, std::string *Error) { - sys::PathWithStatus FileA(NameA); - sys::PathWithStatus FileB(NameB); - - const sys::FileStatus *FileAStat = FileA.getFileStatus(false, Error); - if (!FileAStat) - return 2; - const sys::FileStatus *FileBStat = FileB.getFileStatus(false, Error); - if (!FileBStat) - return 2; - // Check for zero length files because some systems croak when you try to // mmap an empty file. - size_t A_size = FileAStat->getSize(); - size_t B_size = FileBStat->getSize(); + uint64_t A_size; + if (sys::fs::file_size(NameA, A_size)) + return false; + + uint64_t B_size; + if (sys::fs::file_size(NameB, B_size)) + return false; // If they are both zero sized then they're the same if (A_size == 0 && B_size == 0) @@ -205,13 +199,13 @@ int llvm::DiffFilesWithTolerance(StringRef NameA, // Now its safe to mmap the files into memory because both files // have a non-zero size. OwningPtr<MemoryBuffer> F1; - if (error_code ec = MemoryBuffer::getFile(FileA.c_str(), F1)) { + if (error_code ec = MemoryBuffer::getFile(NameA, F1)) { if (Error) *Error = ec.message(); return 2; } OwningPtr<MemoryBuffer> F2; - if (error_code ec = MemoryBuffer::getFile(FileB.c_str(), F2)) { + if (error_code ec = MemoryBuffer::getFile(NameB, F2)) { if (Error) *Error = ec.message(); return 2; |