| Index: src/serialize.cc
|
| ===================================================================
|
| --- src/serialize.cc (revision 2791)
|
| +++ src/serialize.cc (working copy)
|
| @@ -1257,7 +1257,7 @@
|
|
|
| // Write out the object prologue: type, size, and simulated address of obj.
|
| writer_->PutC('[');
|
| - CHECK_EQ(0, size & kObjectAlignmentMask);
|
| + CHECK_EQ(static_cast<intptr_t>(0), size & kObjectAlignmentMask);
|
| writer_->PutInt(type);
|
| writer_->PutInt(size >> kObjectAlignmentBits);
|
| PutEncodedAddress(addr); // encodes AllocationSpace
|
|
|