Drop unused Object::GetMarkerMap method

R=verwaest@chromium.org
BUG=none
LOG=n

Review URL: https://codereview.chromium.org/317373002

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21719 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
jochen@chromium.org 2014-06-06 13:54:08 +00:00
parent b056a8d6c7
commit 3d882db26a
2 changed files with 0 additions and 7 deletions

View File

@ -978,12 +978,6 @@ Handle<Object> Object::GetPrototype(Isolate* isolate,
} }
Map* Object::GetMarkerMap(Isolate* isolate) {
if (IsSmi()) return isolate->heap()->heap_number_map();
return HeapObject::cast(this)->map();
}
Object* Object::GetHash() { Object* Object::GetHash() {
// The object is either a number, a name, an odd-ball, // The object is either a number, a name, an odd-ball,
// a real JS object, or a Harmony proxy. // a real JS object, or a Harmony proxy.

View File

@ -1512,7 +1512,6 @@ class Object {
// Return the object's prototype (might be Heap::null_value()). // Return the object's prototype (might be Heap::null_value()).
Object* GetPrototype(Isolate* isolate); Object* GetPrototype(Isolate* isolate);
static Handle<Object> GetPrototype(Isolate* isolate, Handle<Object> object); static Handle<Object> GetPrototype(Isolate* isolate, Handle<Object> object);
Map* GetMarkerMap(Isolate* isolate);
// Returns the permanent hash code associated with this object. May return // Returns the permanent hash code associated with this object. May return
// undefined if not yet created. // undefined if not yet created.