Hush a noisy warning from GCC 4.2 about overflow during conversion by using

the type "unsigned" instead of uintptr_t for a 1-bit structure field.

llvm-svn: 40066
This commit is contained in:
Reid Spencer 2007-07-19 21:05:30 +00:00
parent f9e6542969
commit 68ee4e8efc
1 changed files with 2 additions and 2 deletions

View File

@ -50,12 +50,12 @@ namespace {
struct MemoryRangeHeader {
/// ThisAllocated - This is true if this block is currently allocated. If
/// not, this can be converted to a FreeRangeHeader.
intptr_t ThisAllocated : 1;
unsigned ThisAllocated : 1;
/// PrevAllocated - Keep track of whether the block immediately before us is
/// allocated. If not, the word immediately before this header is the size
/// of the previous block.
intptr_t PrevAllocated : 1;
unsigned PrevAllocated : 1;
/// BlockSize - This is the size in bytes of this memory block,
/// including this header.