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

Unified Diff: src/objects-printer.cc

Issue 893073006: Add map-based read barrier to WeakCell Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix merge Created 5 years, 10 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
« no previous file with comments | « src/objects-inl.h ('k') | src/type-feedback-vector.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects-printer.cc
diff --git a/src/objects-printer.cc b/src/objects-printer.cc
index 357d7b8b3b42750014844a4929678273105fa9ae..aacb9ba0e7cc162f7fb48d0539aff2a03c9d3c80 100644
--- a/src/objects-printer.cc
+++ b/src/objects-printer.cc
@@ -832,7 +832,7 @@ void WeakCell::WeakCellPrint(std::ostream& os) { // NOLINT
if (cleared()) {
os << "\n - cleared";
} else {
- os << "\n - value: " << Brief(value());
+ os << "\n - value: " << Brief(value(GetHeap()));
}
}
« no previous file with comments | « src/objects-inl.h ('k') | src/type-feedback-vector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698