Index: src/objects.cc |
diff --git a/src/objects.cc b/src/objects.cc |
index 6ca8bdf4fd0bba1f18df887d5f7798eb5ea577d8..0130b73149c09252bf027c07425790b47f87db77 100644 |
--- a/src/objects.cc |
+++ b/src/objects.cc |
@@ -9057,7 +9057,6 @@ AllocationMemento* AllocationMemento::FindForJSObject(JSObject* object) { |
// involves carefully checking the object immediately after the JSArray |
// (if there is one) to see if it's an AllocationMemento. |
if (FLAG_track_allocation_sites && object->GetHeap()->InNewSpace(object)) { |
- ASSERT(object->GetHeap()->InToSpace(object)); |
Address ptr_end = (reinterpret_cast<Address>(object) - kHeapObjectTag) + |
object->Size(); |
if ((ptr_end + AllocationMemento::kSize) <= |