Fix a typo in a comment.
authorDan Gohman <gohman@apple.com>
Wed, 13 Feb 2008 22:32:12 +0000 (22:32 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 13 Feb 2008 22:32:12 +0000 (22:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47097 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/APInt.h

index 6d4b926cefaf172308261193f75eeb483a353e38..fdb1fa47f5b630f502262111d5144cda4983c7bb 100644 (file)
@@ -123,7 +123,7 @@ class APInt {
     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;