summaryrefslogtreecommitdiff
path: root/lib/Support/APInt.cpp
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2009-03-19 11:37:15 +0000
committerDuncan Sands <baldrick@free.fr>2009-03-19 11:37:15 +0000
commitbf5836b075a7fdd680e7c43134237bdef65643cf (patch)
tree039a2248d2c23919d2aec98ac4382e4e96483aa2 /lib/Support/APInt.cpp
parent042348343e8c10b6cd60d2dca2b95ba27428ddc2 (diff)
downloadllvm-bf5836b075a7fdd680e7c43134237bdef65643cf.tar.gz
llvm-bf5836b075a7fdd680e7c43134237bdef65643cf.tar.bz2
llvm-bf5836b075a7fdd680e7c43134237bdef65643cf.tar.xz
Fix comment typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67302 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/APInt.cpp')
-rw-r--r--lib/Support/APInt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/APInt.cpp b/lib/Support/APInt.cpp
index e7afc0d3cd..ae9b066684 100644
--- a/lib/Support/APInt.cpp
+++ b/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;