Typo.
authorRafael Espindola <rafael.espindola@gmail.com>
Wed, 15 Dec 2010 22:33:06 +0000 (22:33 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Wed, 15 Dec 2010 22:33:06 +0000 (22:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121906 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/MathExtras.h

index d0b34771ae16117cd7fbee96fbf05a5dce9ce200..4627557f7f1f05b2fe4382461d69527cc9a67ba4 100644 (file)
@@ -76,7 +76,7 @@ inline bool isUIntN(unsigned N, uint64_t x) {
   return x == (x & (~0ULL >> (64 - N)));
 }
 
-/// isIIntN - Checks if an signed integer fits into the given (dynamic)
+/// isIntN - Checks if an signed integer fits into the given (dynamic)
 /// bit width.
 inline bool isIntN(unsigned N, int64_t x) {
   return N >= 64 || (-(INT64_C(1)<<(N-1)) <= x && x < (INT64_C(1)<<(N-1)));