[llvm-branch-commits] [llvm-branch] r70152 - /llvm/branches/Apple/Dib/include/llvm/ADT/PointerIntPair.h
Bill Wendling
isanbard at gmail.com
Sun Apr 26 13:13:06 PDT 2009
Author: void
Date: Sun Apr 26 15:13:06 2009
New Revision: 70152
URL: http://llvm.org/viewvc/llvm-project?rev=70152&view=rev
Log:
Casting is cool.
Modified:
llvm/branches/Apple/Dib/include/llvm/ADT/PointerIntPair.h
Modified: llvm/branches/Apple/Dib/include/llvm/ADT/PointerIntPair.h
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/Apple/Dib/include/llvm/ADT/PointerIntPair.h?rev=70152&r1=70151&r2=70152&view=diff
==============================================================================
--- llvm/branches/Apple/Dib/include/llvm/ADT/PointerIntPair.h (original)
+++ llvm/branches/Apple/Dib/include/llvm/ADT/PointerIntPair.h Sun Apr 26 15:13:06 2009
@@ -43,17 +43,17 @@
enum {
/// PointerBitMask - The bits that come from the pointer.
PointerBitMask =
- ~(uint64_t)(((intptr_t)1 << PtrTraits::NumLowBitsAvailable)-1),
+ ~(uintptr_t)(((intptr_t)1 << PtrTraits::NumLowBitsAvailable)-1),
/// IntShift - The number of low bits that we reserve for other uses, and
/// keep zero.
- IntShift = (uint64_t)PtrTraits::NumLowBitsAvailable-IntBits,
+ IntShift = (uintptr_t)PtrTraits::NumLowBitsAvailable-IntBits,
/// IntMask - This is the unshifted mask for valid bits of the int type.
- IntMask = (uint64_t)(((intptr_t)1 << IntBits)-1),
+ IntMask = (uintptr_t)(((intptr_t)1 << IntBits)-1),
// ShiftedIntMask - This is the bits for the integer shifted in place.
- ShiftedIntMask = (uint64_t)(IntMask << IntShift)
+ ShiftedIntMask = (uintptr_t)(IntMask << IntShift)
};
public:
PointerIntPair() : Value(0) {}
More information about the llvm-branch-commits
mailing list