[PATCH] D11890: Fixed Visual Studio warnings.
Yaron Keren via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 10 09:48:53 PDT 2015
yaron.keren added inline comments.
================
Comment at: include/llvm/ADT/SmallBitVector.h:558
@@ +557,3 @@
+ if (NumBaseBits == 64 && MaskWords >= 2)
+ M |= uintptr_t(Mask[1]) << 32;
+ if (InvertMask) M = ~M;
----------------
What happens when MaskWords is 2 and we're running on a system where uintptr_t is 32 bits?
http://reviews.llvm.org/D11890
More information about the llvm-commits
mailing list