mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
Use the simpler sys::fs::exists.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184413 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
436cd0cfcf
commit
a18b281791
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user