Emit deprecated check for constant function transitions.

R=mvstanton@chromium.org

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@15183 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
verwaest@chromium.org 2013-06-17 16:10:01 +00:00
parent 5ad53577db
commit 7a229ccf39

View File

@ -3624,6 +3624,9 @@ bool Map::CanBeDeprecated() {
details.representation().IsHeapObject()) {
return true;
}
if (FLAG_track_fields && details.type() == CONSTANT_FUNCTION) {
return true;
}
}
return false;
}