diff options
author | Duncan Sands <baldrick@free.fr> | 2009-03-19 11:37:15 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2009-03-19 11:37:15 +0000 |
commit | 820846503697622af5ea294f6b18cd28915c7f49 (patch) | |
tree | fa18bd0acd68af8cf639090b1080b74f045017f8 /llvm/lib/Support/APInt.cpp | |
parent | 4e004ed124bb2a85d285c38bcd44aa4b5ee20e7c (diff) | |
download | bcm5719-llvm-820846503697622af5ea294f6b18cd28915c7f49.tar.gz bcm5719-llvm-820846503697622af5ea294f6b18cd28915c7f49.zip |
Fix comment typo.
llvm-svn: 67302
Diffstat (limited to 'llvm/lib/Support/APInt.cpp')
-rw-r--r-- | llvm/lib/Support/APInt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp index e7afc0d3cdf..ae9b066684c 100644 --- a/llvm/lib/Support/APInt.cpp +++ b/llvm/lib/Support/APInt.cpp @@ -1629,7 +1629,7 @@ void APInt::divide(const APInt LHS, unsigned lhsWords, // and the 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. Furthremore, casting the 64-bit values to 32-bit values won't + // 128-bits. Furthermore, casting the 64-bit values to 32-bit values won't // work on large-endian machines. uint64_t mask = ~0ull >> (sizeof(unsigned)*8); unsigned n = rhsWords * 2; |