Index: src/objects-printer.cc |
diff --git a/src/objects-printer.cc b/src/objects-printer.cc |
index 0849a630c230205b8f299e74dd85de4eb2c5845a..ddecae3bf539ef3a7e2462a13e034a445a722db6 100644 |
--- a/src/objects-printer.cc |
+++ b/src/objects-printer.cc |
@@ -596,8 +596,8 @@ void Map::MapPrint(FILE* out) { |
} |
PrintF(out, " - back pointer: "); |
GetBackPointer()->ShortPrint(out); |
- PrintF(out, "\n - instance descriptors %i #%i: ", |
- owns_descriptors(), |
+ PrintF(out, "\n - instance descriptors %s#%i: ", |
+ owns_descriptors() ? "(own) " : "", |
NumberOfOwnDescriptors()); |
instance_descriptors()->ShortPrint(out); |
if (HasTransitionArray()) { |