[llvm] 90b1e5b - [llvm][NFC]Fix a few typos (#110844)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 8 10:55:52 PST 2025
Author: Jade
Date: 2025-03-08T18:55:49Z
New Revision: 90b1e5bc8aa03099c84cba6898ba26e40df398fa
URL: https://github.com/llvm/llvm-project/commit/90b1e5bc8aa03099c84cba6898ba26e40df398fa
DIFF: https://github.com/llvm/llvm-project/commit/90b1e5bc8aa03099c84cba6898ba26e40df398fa.diff
LOG: [llvm][NFC]Fix a few typos (#110844)
Added:
Modified:
llvm/include/llvm/Support/ConvertUTF.h
llvm/include/llvm/Support/MathExtras.h
Removed:
################################################################################
diff --git a/llvm/include/llvm/Support/ConvertUTF.h b/llvm/include/llvm/Support/ConvertUTF.h
index c892bb3c03cb5..25d46178457d6 100644
--- a/llvm/include/llvm/Support/ConvertUTF.h
+++ b/llvm/include/llvm/Support/ConvertUTF.h
@@ -47,7 +47,7 @@
Conversions between UTF32, UTF-16, and UTF-8. Header file.
- Several funtions are included here, forming a complete set of
+ Several functions are included here, forming a complete set of
conversions between the three formats. UTF-7 is not included
here, but is handled in a separate source file.
diff --git a/llvm/include/llvm/Support/MathExtras.h b/llvm/include/llvm/Support/MathExtras.h
index 5a6f51adc07f3..07f7bab0f0a3a 100644
--- a/llvm/include/llvm/Support/MathExtras.h
+++ b/llvm/include/llvm/Support/MathExtras.h
@@ -723,7 +723,7 @@ std::enable_if_t<std::is_signed_v<T>, T> AddOverflow(T X, T Y, T &Result) {
}
/// Subtract two signed integers, computing the two's complement truncated
-/// result, returning true if an overflow ocurred.
+/// result, returning true if an overflow occurred.
template <typename T>
std::enable_if_t<std::is_signed_v<T>, T> SubOverflow(T X, T Y, T &Result) {
#if __has_builtin(__builtin_sub_overflow)
@@ -749,7 +749,7 @@ std::enable_if_t<std::is_signed_v<T>, T> SubOverflow(T X, T Y, T &Result) {
}
/// Multiply two signed integers, computing the two's complement truncated
-/// result, returning true if an overflow ocurred.
+/// result, returning true if an overflow occurred.
template <typename T>
std::enable_if_t<std::is_signed_v<T>, T> MulOverflow(T X, T Y, T &Result) {
#if __has_builtin(__builtin_mul_overflow)
More information about the llvm-commits
mailing list