]> granicus.if.org Git - llvm/commitdiff
Avoid UB in maxIntN(64).
authorJustin Lebar <jlebar@google.com>
Sun, 17 Jul 2016 18:19:26 +0000 (18:19 +0000)
committerJustin Lebar <jlebar@google.com>
Sun, 17 Jul 2016 18:19:26 +0000 (18:19 +0000)
Summary:
Previously we were relying on 2's complement underflow in an int64_t.
Now we cast to a uint64_t so we explicitly get the behavior we want.

Reviewers: rnk

Subscribers: dylanmckay, llvm-commits

Differential Revision: https://reviews.llvm.org/D22445

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@275722 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/MathExtras.h

index 939800b42b6b42aafafe88a4a97313de2b3f4867..cf033e30aac37af81af05a0bfc1559ffcf6fbfdb 100644 (file)
@@ -344,7 +344,9 @@ inline int64_t minIntN(int64_t N) {
 inline int64_t maxIntN(int64_t N) {
   assert(N > 0 && N <= 64 && "integer width out of range");
 
-  return (INT64_C(1)<<(N-1)) - 1;
+  // This relies on two's complement wraparound when N == 64, so we convert to
+  // int64_t only at the very end to avoid UB.
+  return (UINT64_C(1) << (N - 1)) - 1;
 }
 
 /// isUIntN - Checks if an unsigned integer fits into the given (dynamic)