Index: src/factory.cc |
diff --git a/src/factory.cc b/src/factory.cc |
index cd044ad8b102a43131bbf4f04c2090629b9eeba4..6a4235e87245ec3bc53f9bfc80b7085e4c3ef184 100644 |
--- a/src/factory.cc |
+++ b/src/factory.cc |
@@ -933,18 +933,6 @@ Handle<JSObject> Factory::NewJSObject(Handle<JSFunction> constructor, |
} |
-Handle<JSObject> Factory::NewJSObjectWithAllocationSiteInfo( |
- Handle<JSFunction> constructor, |
- Handle<Object> payload) { |
- CALL_HEAP_FUNCTION( |
- isolate(), |
- isolate()->heap()->AllocateJSObject(*constructor, |
- NOT_TENURED, |
- TRACK_ALLOCATION_SITE, |
- &payload), JSObject); |
-} |
- |
- |
Handle<JSModule> Factory::NewJSModule(Handle<Context> context, |
Handle<ScopeInfo> scope_info) { |
CALL_HEAP_FUNCTION( |
@@ -982,8 +970,6 @@ Handle<JSArray> Factory::NewJSArray(int capacity, |
elements_kind, |
0, |
capacity, |
- DONT_TRACK_ALLOCATION_SITE, |
- NULL, |
INITIALIZE_ARRAY_ELEMENTS_WITH_HOLE, |
pretenure), |
JSArray); |