| Index: runtime/vm/snapshot.cc
|
| diff --git a/runtime/vm/snapshot.cc b/runtime/vm/snapshot.cc
|
| index 33570ae8d4c29cf603116073a5913cf89435c7bc..935088053e71c92dc96444a11d1cb1e3bd0c7221 100644
|
| --- a/runtime/vm/snapshot.cc
|
| +++ b/runtime/vm/snapshot.cc
|
| @@ -142,11 +142,6 @@ const Snapshot* Snapshot::SetupFromBuffer(const void* raw_memory) {
|
| ASSERT(kLengthIndex == length_offset());
|
| ASSERT((kSnapshotFlagIndex * sizeof(int64_t)) == kind_offset());
|
| ASSERT((kHeapObjectTag & kInlined));
|
| - // The kWatchedBit and kMarkBit are only set during GC operations. This
|
| - // allows the two low bits in the header to be used for snapshotting.
|
| - ASSERT(kObjectId ==
|
| - ((1 << RawObject::kWatchedBit) | (1 << RawObject::kMarkBit)));
|
| - ASSERT((kObjectAlignmentMask & kObjectId) == kObjectId);
|
| const Snapshot* snapshot = reinterpret_cast<const Snapshot*>(raw_memory);
|
| // If the raw length is negative or greater than what the local machine can
|
| // handle, then signal an error.
|
|
|