[llvm-commits] [llvm] r47097 - /llvm/trunk/include/llvm/ADT/APInt.h

Dan Gohman gohman at apple.com
Wed Feb 13 14:32:12 PST 2008


Author: djg
Date: Wed Feb 13 16:32:12 2008
New Revision: 47097

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

Modified:
    llvm/trunk/include/llvm/ADT/APInt.h

Modified: llvm/trunk/include/llvm/ADT/APInt.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/APInt.h?rev=47097&r1=47096&r2=47097&view=diff

==============================================================================
--- llvm/trunk/include/llvm/ADT/APInt.h (original)
+++ llvm/trunk/include/llvm/ADT/APInt.h Wed Feb 13 16:32:12 2008
@@ -123,7 +123,7 @@
     uint32_t wordBits = BitWidth % APINT_BITS_PER_WORD;
     if (wordBits == 0)
       // If all bits are used, we want to leave the value alone. This also
-      // avoids the undefined behavior of >> when the shfit is the same size as
+      // avoids the undefined behavior of >> when the shift is the same size as
       // the word size (64).
       return *this;
 





More information about the llvm-commits mailing list