aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Support')
-rw-r--r--include/llvm/Support/ErrorOr.h6
-rw-r--r--include/llvm/Support/FileSystem.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Support/ErrorOr.h b/include/llvm/Support/ErrorOr.h
index f3ac305fe7..6832e3df2f 100644
--- a/include/llvm/Support/ErrorOr.h
+++ b/include/llvm/Support/ErrorOr.h
@@ -34,7 +34,7 @@ struct ErrorHolderBase {
ErrorHolderBase() : RefCount(1) {}
- void aquire() {
+ void acquire() {
++RefCount;
}
@@ -308,7 +308,7 @@ private:
// Get other's error.
Error = Other.Error;
HasError = true;
- Error->aquire();
+ Error->acquire();
}
}
@@ -437,7 +437,7 @@ public:
ErrorOr(const ErrorOr &Other) : Error(0, 0) {
Error = Other.Error;
if (Other.Error.getPointer()->Error) {
- Error.getPointer()->aquire();
+ Error.getPointer()->acquire();
}
}
diff --git a/include/llvm/Support/FileSystem.h b/include/llvm/Support/FileSystem.h
index f52785bb15..6baaeb841b 100644
--- a/include/llvm/Support/FileSystem.h
+++ b/include/llvm/Support/FileSystem.h
@@ -732,7 +732,7 @@ public:
/// should begin. Must be a multiple of
/// mapped_file_region::alignment().
/// \param ec This is set to errc::success if the map was constructed
- /// sucessfully. Otherwise it is set to a platform dependent error.
+ /// successfully. Otherwise it is set to a platform dependent error.
mapped_file_region(const Twine &path,
mapmode mode,
uint64_t length,