Index: src/mark-compact-inl.h |
=================================================================== |
--- src/mark-compact-inl.h (revision 9765) |
+++ src/mark-compact-inl.h (working copy) |
@@ -54,9 +54,6 @@ |
if (!mark_bit.Get()) { |
mark_bit.Set(); |
MemoryChunk::IncrementLiveBytes(obj->address(), obj->Size()); |
-#ifdef DEBUG |
- UpdateLiveObjectCount(obj); |
-#endif |
ProcessNewlyMarkedObject(obj); |
} |
} |
@@ -67,9 +64,6 @@ |
ASSERT(Marking::MarkBitFrom(obj) == mark_bit); |
mark_bit.Set(); |
MemoryChunk::IncrementLiveBytes(obj->address(), obj->Size()); |
-#ifdef DEBUG |
- UpdateLiveObjectCount(obj); |
-#endif |
} |