Move the conversion to intptr_t to a separate statement. This

avoids GCC's warning even on 64-bit hosts.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60706 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2008-12-08 17:41:24 +00:00
parent 2d4e9bc922
commit b79a01111d

View File

@ -53,8 +53,9 @@ public:
} }
void setInt(IntType Int) { void setInt(IntType Int) {
assert(intptr_t(Int) < (1 << IntBits) && "Integer too large for field"); intptr_t IntVal = Int;
Value = reinterpret_cast<intptr_t>(getPointer()) | (intptr_t)Int; assert(IntVal < (1 << IntBits) && "Integer too large for field");
Value = reinterpret_cast<intptr_t>(getPointer()) | IntVal;
} }
void *getOpaqueValue() const { return reinterpret_cast<void*>(Value); } void *getOpaqueValue() const { return reinterpret_cast<void*>(Value); }