| Index: src/spaces.cc
|
| diff --git a/src/spaces.cc b/src/spaces.cc
|
| index c70126c05c7349444c2872ab29297222420c3fdd..01ec408ee585aebe91ffaca1b2b74714e278f66d 100644
|
| --- a/src/spaces.cc
|
| +++ b/src/spaces.cc
|
| @@ -799,7 +799,7 @@ void PagedSpace::Verify(ObjectVisitor* visitor) {
|
|
|
| HeapObjectIterator it(current_page, NULL);
|
| Address end_of_previous_object = current_page->ObjectAreaStart();
|
| - for(HeapObject* object = it.next(); object != NULL; object = it.next()) {
|
| + for (HeapObject* object = it.next(); object != NULL; object = it.next()) {
|
| ASSERT(end_of_previous_object <= object->address());
|
|
|
| // The first word should be a map, and we expect all map pointers to
|
| @@ -811,10 +811,6 @@ void PagedSpace::Verify(ObjectVisitor* visitor) {
|
| // Perform space-specific object verification.
|
| VerifyObject(object);
|
|
|
| - if (object->IsCodeCache() && ((uint32_t*)object->address())[2] == 0x2) {
|
| - current_page->PrintMarkbits();
|
| - }
|
| -
|
| // The object itself should look OK.
|
| object->Verify();
|
|
|
|
|