Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(474)

Unified Diff: src/objects-printer.cc

Issue 2674593003: [TypeFeedbackVector] Root feedback vectors at function literal site. (Closed)
Patch Set: REBASE. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/objects-printer.cc
diff --git a/src/objects-printer.cc b/src/objects-printer.cc
index 903785f96c8b89f16b6da8280bcdbd046bbe22cb..bd5a966f680b730c1dcb9dafa0e40509e3c99b10 100644
--- a/src/objects-printer.cc
+++ b/src/objects-printer.cc
@@ -1052,7 +1052,7 @@ void JSFunction::JSFunctionPrint(std::ostream& os) { // NOLINT
os << "\n - async";
}
os << "\n - context = " << Brief(context());
- os << "\n - feedback vector = " << Brief(feedback_vector());
+ os << "\n - feedback vector cell = " << Brief(feedback_vector_cell());
os << "\n - code = " << Brief(code());
JSObjectPrintBody(os, this);
}

Powered by Google App Engine
This is Rietveld 408576698