From a18b281791d7cc6e966a4f472f2176e4c4755e9b Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Thu, 20 Jun 2013 12:04:39 +0000 Subject: Use the simpler sys::fs::exists. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184413 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvm-ar/ArchiveWriter.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tools/llvm-ar') diff --git a/tools/llvm-ar/ArchiveWriter.cpp b/tools/llvm-ar/ArchiveWriter.cpp index ada45f510b..3656ad4854 100644 --- a/tools/llvm-ar/ArchiveWriter.cpp +++ b/tools/llvm-ar/ArchiveWriter.cpp @@ -156,8 +156,7 @@ Archive::fillHeader(const ArchiveMember &mbr, ArchiveMemberHeader& hdr, // of extracting the necessary flags and information from the file. bool Archive::addFileBefore(StringRef filePath, iterator where, std::string *ErrMsg) { - bool Exists; - if (sys::fs::exists(filePath.str(), Exists) || !Exists) { + if (!sys::fs::exists(filePath)) { if (ErrMsg) *ErrMsg = "Can not add a non-existent file to archive"; return true; -- cgit v1.2.3