| Index: src/mark-compact.cc
|
| diff --git a/src/mark-compact.cc b/src/mark-compact.cc
|
| index 81de035b0af7a6ae67de51f738b30ecbdbcb2da5..f38fa5ef1fa181dea6e64817526eaab30b8ed8ba 100644
|
| --- a/src/mark-compact.cc
|
| +++ b/src/mark-compact.cc
|
| @@ -2618,6 +2618,7 @@ void MarkCompactCollector::ClearNonLivePrototypeTransitions(Map* map) {
|
| Object* prototype = prototype_transitions->get(proto_offset + i * step);
|
| Object* cached_map = prototype_transitions->get(map_offset + i * step);
|
| if (IsMarked(prototype) && IsMarked(cached_map)) {
|
| + ASSERT(!prototype->IsUndefined());
|
| int proto_index = proto_offset + new_number_of_transitions * step;
|
| int map_index = map_offset + new_number_of_transitions * step;
|
| if (new_number_of_transitions != i) {
|
|
|