Index: src/heap-inl.h |
diff --git a/src/heap-inl.h b/src/heap-inl.h |
index f0861b2e7a9546eea1beb74d1991f81349e1f3d3..0d119fff441833d098f3b4da3c4fff6caaabe659 100644 |
--- a/src/heap-inl.h |
+++ b/src/heap-inl.h |
@@ -480,10 +480,9 @@ void Heap::ScavengeObject(HeapObject** p, HeapObject* object) { |
MaybeObject* Heap::AllocateEmptyJSArrayWithAllocationSite( |
ElementsKind elements_kind, |
- Handle<Object> allocation_site_payload) { |
+ Handle<AllocationSite> allocation_site) { |
return AllocateJSArrayAndStorageWithAllocationSite(elements_kind, 0, 0, |
- allocation_site_payload, |
- DONT_INITIALIZE_ARRAY_ELEMENTS); |
+ allocation_site, DONT_INITIALIZE_ARRAY_ELEMENTS); |
} |