aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/APInt.cpp
diff options
context:
space:
mode:
authorVictor Toni <ViToni@users.noreply.github.com>2024-04-12 23:33:35 +0200
committerGitHub <noreply@github.com>2024-04-12 14:33:35 -0700
commit900be9013fdc3bab9fce906f8a71e59ecd8873b4 (patch)
treebfce9baf44217097dfefde2648a3bc0717db0153 /llvm/lib/Support/APInt.cpp
parent7b6b023121fe7d612dc571de0ff3dcaaf8477765 (diff)
downloadllvm-900be9013fdc3bab9fce906f8a71e59ecd8873b4.zip
llvm-900be9013fdc3bab9fce906f8a71e59ecd8873b4.tar.gz
llvm-900be9013fdc3bab9fce906f8a71e59ecd8873b4.tar.bz2
Fix typos (#88565)
Diffstat (limited to 'llvm/lib/Support/APInt.cpp')
-rw-r--r--llvm/lib/Support/APInt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp
index 18feca4..24e136f 100644
--- a/llvm/lib/Support/APInt.cpp
+++ b/llvm/lib/Support/APInt.cpp
@@ -2663,7 +2663,7 @@ int APInt::tcDivide(WordType *lhs, const WordType *rhs,
return false;
}
-/// Shift a bignum left Cound bits in-place. Shifted in bits are zero. There are
+/// Shift a bignum left Count bits in-place. Shifted in bits are zero. There are
/// no restrictions on Count.
void APInt::tcShiftLeft(WordType *Dst, unsigned Words, unsigned Count) {
// Don't bother performing a no-op shift.