From 820846503697622af5ea294f6b18cd28915c7f49 Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Thu, 19 Mar 2009 11:37:15 +0000 Subject: Fix comment typo. llvm-svn: 67302 --- llvm/lib/Support/APInt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/Support') 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; -- cgit v1.2.3