Fix lint failure.

TBR=ager@chromium.org

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@1862 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent b4326136
...@@ -806,7 +806,7 @@ void MarkCompactCollector::UpdateLiveObjectCount(HeapObject* obj) { ...@@ -806,7 +806,7 @@ void MarkCompactCollector::UpdateLiveObjectCount(HeapObject* obj) {
live_young_objects_++; live_young_objects_++;
} else if (Heap::map_space()->Contains(obj)) { } else if (Heap::map_space()->Contains(obj)) {
ASSERT(obj->IsMap()); ASSERT(obj->IsMap());
live_map_objects_ ++; live_map_objects_++;
} else if (Heap::old_pointer_space()->Contains(obj)) { } else if (Heap::old_pointer_space()->Contains(obj)) {
live_old_pointer_objects_++; live_old_pointer_objects_++;
} else if (Heap::old_data_space()->Contains(obj)) { } else if (Heap::old_data_space()->Contains(obj)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment