summaryrefslogtreecommitdiff
path: root/lib/Support
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-05-31 02:29:28 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-05-31 02:29:28 +0000
commit1028cc76ef8b40a933aba58cc531ccf466951771 (patch)
tree524fa8341d5e79eaa8a3e5319e1758f8ed9db4f2 /lib/Support
parent1bab2d53996ca082150f34d8dafc1968fb5ecba9 (diff)
downloadllvm-1028cc76ef8b40a933aba58cc531ccf466951771.tar.gz
llvm-1028cc76ef8b40a933aba58cc531ccf466951771.tar.bz2
llvm-1028cc76ef8b40a933aba58cc531ccf466951771.tar.xz
Turn errc and windows_error into enum classes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209957 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r--lib/Support/Unix/Path.inc10
-rw-r--r--lib/Support/Windows/Path.inc4
2 files changed, 7 insertions, 7 deletions
diff --git a/lib/Support/Unix/Path.inc b/lib/Support/Unix/Path.inc
index 2925e6457a..fbd7ced209 100644
--- a/lib/Support/Unix/Path.inc
+++ b/lib/Support/Unix/Path.inc
@@ -248,7 +248,7 @@ error_code current_path(SmallVectorImpl<char> &result) {
while (true) {
if (::getcwd(result.data(), result.capacity()) == nullptr) {
// See if there was a real error.
- if (errno != errc::not_enough_memory)
+ if (errno != ENOMEM)
return error_code(errno, system_category());
// Otherwise there just wasn't enough space.
result.reserve(result.capacity() * 2);
@@ -265,7 +265,7 @@ error_code create_directory(const Twine &path, bool IgnoreExisting) {
StringRef p = path.toNullTerminatedStringRef(path_storage);
if (::mkdir(p.begin(), S_IRWXU | S_IRWXG) == -1) {
- if (errno != errc::file_exists || !IgnoreExisting)
+ if (errno != EEXIST || !IgnoreExisting)
return error_code(errno, system_category());
}
@@ -306,7 +306,7 @@ error_code remove(const Twine &path, bool IgnoreNonExisting) {
struct stat buf;
if (lstat(p.begin(), &buf) != 0) {
- if (errno != errc::no_such_file_or_directory || !IgnoreNonExisting)
+ if (errno != ENOENT || !IgnoreNonExisting)
return error_code(errno, system_category());
return error_code();
}
@@ -320,7 +320,7 @@ error_code remove(const Twine &path, bool IgnoreNonExisting) {
return make_error_code(errc::operation_not_permitted);
if (::remove(p.begin()) == -1) {
- if (errno != errc::no_such_file_or_directory || !IgnoreNonExisting)
+ if (errno != ENOENT || !IgnoreNonExisting)
return error_code(errno, system_category());
}
@@ -355,7 +355,7 @@ error_code exists(const Twine &path, bool &result) {
StringRef p = path.toNullTerminatedStringRef(path_storage);
if (::access(p.begin(), F_OK) == -1) {
- if (errno != errc::no_such_file_or_directory)
+ if (errno != ENOENT)
return error_code(errno, system_category());
result = false;
} else
diff --git a/lib/Support/Windows/Path.inc b/lib/Support/Windows/Path.inc
index 8baa263cb8..f04900c0dd 100644
--- a/lib/Support/Windows/Path.inc
+++ b/lib/Support/Windows/Path.inc
@@ -810,7 +810,7 @@ error_code openFileForRead(const Twine &Name, int &ResultFD) {
if (EC != windows_error::access_denied)
return EC;
if (is_directory(Name))
- return error_code(errc::is_a_directory, posix_category());
+ return make_error_code(errc::is_a_directory);
return EC;
}
@@ -861,7 +861,7 @@ error_code openFileForWrite(const Twine &Name, int &ResultFD,
if (EC != windows_error::access_denied)
return EC;
if (is_directory(Name))
- return error_code(errc::is_a_directory, posix_category());
+ return make_error_code(errc::is_a_directory);
return EC;
}