Index: src/heap-snapshot-generator.cc |
diff --git a/src/heap-snapshot-generator.cc b/src/heap-snapshot-generator.cc |
index fbc798d92192de01e924775d59a7d37eaba50611..ae07f6a6ee27ea2307b788afaca2099aa158bfd4 100644 |
--- a/src/heap-snapshot-generator.cc |
+++ b/src/heap-snapshot-generator.cc |
@@ -1660,9 +1660,7 @@ void V8HeapExplorer::ExtractPropertyReferences(JSObject* js_obj, int entry) { |
js_obj->GetInObjectPropertyOffset(index)); |
} |
} else { |
- FieldIndex field_index = |
- FieldIndex::ForDescriptor(js_obj->map(), i); |
- Object* value = js_obj->RawFastPropertyAt(field_index); |
+ Object* value = js_obj->RawFastPropertyAt(index); |
if (k != heap_->hidden_string()) { |
SetPropertyReference(js_obj, entry, k, value); |
} else { |