Print dependent code in MapPrint.

R=verwaest@chromium.org

Review URL: https://chromiumcodereview.appspot.com/12538002

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@13840 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
ulan@chromium.org 2013-03-06 14:55:59 +00:00
parent 3d1c89d4b1
commit 1944b9953a

View File

@ -599,6 +599,8 @@ void Map::MapPrint(FILE* out) {
constructor()->ShortPrint(out);
PrintF(out, "\n - code cache: ");
code_cache()->ShortPrint(out);
PrintF(out, "\n - dependent code: ");
dependent_code()->ShortPrint(out);
PrintF(out, "\n");
}