mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-02 02:14:23 +00:00
Remove another F_OK.
llvm-svn: 77405
This commit is contained in:
parent
a364079155
commit
454f9dc117
@ -636,7 +636,7 @@ Path::eraseSuffix() {
|
||||
|
||||
static bool createDirectoryHelper(char* beg, char* end, bool create_parents) {
|
||||
|
||||
if (access(beg, F_OK | R_OK | W_OK) == 0)
|
||||
if (access(beg, R_OK | W_OK) == 0)
|
||||
return false;
|
||||
|
||||
if (create_parents) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user