| Index: src/heap/heap.cc
|
| diff --git a/src/heap/heap.cc b/src/heap/heap.cc
|
| index 913ac13d43832494e2234c123e6e421e2074cc6e..9716616ea71fd1fcf8e1c697fb556e846da74cce 100644
|
| --- a/src/heap/heap.cc
|
| +++ b/src/heap/heap.cc
|
| @@ -1612,8 +1612,6 @@ void Heap::Scavenge() {
|
| PropertyCell* cell = PropertyCell::cast(heap_object);
|
| Address value_address = cell->ValueAddress();
|
| scavenge_visitor.VisitPointer(reinterpret_cast<Object**>(value_address));
|
| - Address type_address = cell->TypeAddress();
|
| - scavenge_visitor.VisitPointer(reinterpret_cast<Object**>(type_address));
|
| }
|
| }
|
|
|
| @@ -2894,7 +2892,6 @@ AllocationResult Heap::AllocatePropertyCell() {
|
| cell->set_dependent_code(DependentCode::cast(empty_fixed_array()),
|
| SKIP_WRITE_BARRIER);
|
| cell->set_value(the_hole_value());
|
| - cell->set_type(HeapType::None());
|
| return result;
|
| }
|
|
|
|
|