Version 3.19.2

Fill in one-word-fillers for the unused property fields (Chromium issue 240056).

Removed use_system_v8 logic from the mainline gyp file (Chromium issue 226860).

Skip CPU profiler samples where top function's stack frame is not set up properly (issue 2628).

Performance and stability improvements on all platforms.

git-svn-id: http://v8.googlecode.com/svn/trunk@14720 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
diff --git a/src/objects-printer.cc b/src/objects-printer.cc
index 0849a63..ddecae3 100644
--- a/src/objects-printer.cc
+++ b/src/objects-printer.cc
@@ -596,8 +596,8 @@
   }
   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()) {