Fix comment typo.
authorDuncan Sands <baldrick@free.fr>
Thu, 19 Mar 2009 11:37:15 +0000 (11:37 +0000)
committerDuncan Sands <baldrick@free.fr>
Thu, 19 Mar 2009 11:37:15 +0000 (11:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67302 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/APInt.cpp

index e7afc0d3cdfec4157fab14fd3de0350b9b7e3f43..ae9b066684cfb93335a69b6c07264ce64a780053 100644 (file)
@@ -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;