[llvm-commits] [llvm] r67302 - /llvm/trunk/lib/Support/APInt.cpp

Duncan Sands baldrick at free.fr
Thu Mar 19 04:37:16 PDT 2009


Author: baldrick
Date: Thu Mar 19 06:37:15 2009
New Revision: 67302

URL: http://llvm.org/viewvc/llvm-project?rev=67302&view=rev
Log:
Fix comment typo.

Modified:
    llvm/trunk/lib/Support/APInt.cpp

Modified: llvm/trunk/lib/Support/APInt.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/APInt.cpp?rev=67302&r1=67301&r2=67302&view=diff

==============================================================================
--- llvm/trunk/lib/Support/APInt.cpp (original)
+++ llvm/trunk/lib/Support/APInt.cpp Thu Mar 19 06:37:15 2009
@@ -1629,7 +1629,7 @@
   // 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;





More information about the llvm-commits mailing list