Index: src/mark-compact.cc |
=================================================================== |
--- src/mark-compact.cc (revision 1931) |
+++ src/mark-compact.cc (working copy) |
@@ -471,7 +471,7 @@ |
void MarkCompactCollector::MarkDescriptorArray( |
- DescriptorArray *descriptors) { |
+ DescriptorArray* descriptors) { |
if (descriptors->IsMarked()) return; |
// Empty descriptor array is marked as a root before any maps are marked. |
ASSERT(descriptors != Heap::empty_descriptor_array()); |
@@ -871,7 +871,7 @@ |
// clearing map transitions when necessary. |
current = map; |
bool on_dead_path = !current->IsMarked(); |
- Object *next; |
+ Object* next; |
while (SafeIsMap(current)) { |
next = current->prototype(); |
// There should never be a dead map above a live map. |