From: Rafael Espindola Date: Wed, 15 Dec 2010 22:33:06 +0000 (+0000) Subject: Typo. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=c42a7754bb6249c33c509e6fa6e8b3c9344e72d8;p=oota-llvm.git Typo. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121906 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/MathExtras.h b/include/llvm/Support/MathExtras.h index d0b34771ae1..4627557f7f1 100644 --- a/include/llvm/Support/MathExtras.h +++ b/include/llvm/Support/MathExtras.h @@ -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)));