[llvm-commits] [llvm] r121906 - /llvm/trunk/include/llvm/Support/MathExtras.h

Rafael Espindola rafael.espindola at gmail.com
Wed Dec 15 14:33:06 PST 2010


Author: rafael
Date: Wed Dec 15 16:33:06 2010
New Revision: 121906

URL: http://llvm.org/viewvc/llvm-project?rev=121906&view=rev
Log:
Typo.

Modified:
    llvm/trunk/include/llvm/Support/MathExtras.h

Modified: llvm/trunk/include/llvm/Support/MathExtras.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/MathExtras.h?rev=121906&r1=121905&r2=121906&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/MathExtras.h (original)
+++ llvm/trunk/include/llvm/Support/MathExtras.h Wed Dec 15 16:33:06 2010
@@ -76,7 +76,7 @@
   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)));





More information about the llvm-commits mailing list