diff options
author | Dan Gohman <gohman@apple.com> | 2010-02-10 16:03:48 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-02-10 16:03:48 +0000 |
commit | 4a618827de7c540c68685789d1eb9b2b50cdc33f (patch) | |
tree | 0d17edfcf8589f2399f826701396f57fe8f98da8 /llvm/lib/Support | |
parent | 7bf08432d2c618de728bc7671b8c5360966050bf (diff) | |
download | bcm5719-llvm-4a618827de7c540c68685789d1eb9b2b50cdc33f.tar.gz bcm5719-llvm-4a618827de7c540c68685789d1eb9b2b50cdc33f.zip |
Fix "the the" and similar typos.
llvm-svn: 95781
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/APInt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp index f41b31a883c..3bce3f3ed3f 100644 --- a/llvm/lib/Support/APInt.cpp +++ b/llvm/lib/Support/APInt.cpp @@ -273,7 +273,7 @@ APInt& APInt::operator-=(const APInt& RHS) { return clearUnusedBits(); } -/// Multiplies an integer array, x by a a uint64_t integer and places the result +/// Multiplies an integer array, x, by a uint64_t integer and places the result /// into dest. /// @returns the carry out of the multiplication. /// @brief Multiply a multi-digit APInt by a single digit (64-bit) integer. @@ -1766,7 +1766,7 @@ void APInt::divide(const APInt LHS, unsigned lhsWords, // First, compose the values into an array of 32-bit words instead of // 64-bit words. This is a necessity of both the "short division" algorithm - // and the the Knuth "classical algorithm" which requires there to be native + // and the Knuth "classical algorithm" which requires there to be native // operations for +, -, and * on an m bit value with an m*2 bit result. We // can't use 64-bit operands here because we don't have native results of // 128-bits. Furthermore, casting the 64-bit values to 32-bit values won't |