Use uint64_t instead of unsigned.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70148 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2009-04-26 19:46:41 +00:00
parent 1e8db00e3b
commit b14a495c36

View File

@ -42,16 +42,18 @@ class PointerIntPair {
intptr_t Value;
enum {
/// PointerBitMask - The bits that come from the pointer.
PointerBitMask = ~(((intptr_t)1 << PtrTraits::NumLowBitsAvailable)-1),
PointerBitMask =
~(uint64_t)(((intptr_t)1 << PtrTraits::NumLowBitsAvailable)-1),
/// IntShift - The number of low bits that we reserve for other uses, and
/// keep zero.
IntShift = PtrTraits::NumLowBitsAvailable-IntBits,
IntShift = (uint64_t)PtrTraits::NumLowBitsAvailable-IntBits,
/// IntMask - This is the unshifted mask for valid bits of the int type.
IntMask = ((intptr_t)1 << IntBits)-1,
IntMask = (uint64_t)(((intptr_t)1 << IntBits)-1),
// ShiftedIntMask - This is the bits for the integer shifted in place.
ShiftedIntMask = IntMask << IntShift
ShiftedIntMask = (uint64_t)(IntMask << IntShift)
};
public:
PointerIntPair() : Value(0) {}