Index: src/heap-inl.h |
diff --git a/src/heap-inl.h b/src/heap-inl.h |
index 880885593abe2916cdcad30bc46a369454fd663f..510a9224ddf6bd3a018e02c92b9fa6759bb7af4c 100644 |
--- a/src/heap-inl.h |
+++ b/src/heap-inl.h |
@@ -525,6 +525,8 @@ void Heap::ScavengeObject(HeapObject** p, HeapObject* object) { |
return; |
} |
+ // TODO(hpayer): temporary debugging code, should be removed. |
+ CHECK(object->map() != object->GetHeap()->allocation_memento_map()); |
mvstanton
2013/09/10 15:42:30
Nice, and can you reference chromium issue 284577
Hannes Payer (out of office)
2013/09/10 17:21:52
Done.
|
// Call the slow part of scavenge object. |
return ScavengeObjectSlow(p, object); |
} |