Index: src/profiler/heap-snapshot-generator.cc |
diff --git a/src/profiler/heap-snapshot-generator.cc b/src/profiler/heap-snapshot-generator.cc |
index f62129726643d267bdf6fb0c790949c711eeb6a7..0a9fb03226b61013c8c0f04103ded28bc43ef206 100644 |
--- a/src/profiler/heap-snapshot-generator.cc |
+++ b/src/profiler/heap-snapshot-generator.cc |
@@ -1112,9 +1112,10 @@ void V8HeapExplorer::ExtractJSObjectReferences( |
} |
} |
SharedFunctionInfo* shared_info = js_fun->shared(); |
- TagObject(js_fun->literals(), "(function literals)"); |
- SetInternalReference(js_fun, entry, "literals", js_fun->literals(), |
- JSFunction::kLiteralsOffset); |
+ TagObject(js_fun->feedback_vector(), "(function feedback vector)"); |
+ SetInternalReference(js_fun, entry, "feedback_vector", |
+ js_fun->feedback_vector(), |
+ JSFunction::kFeedbackVectorOffset); |
TagObject(shared_info, "(shared function info)"); |
SetInternalReference(js_fun, entry, |
"shared", shared_info, |