Index: src/heap-inl.h |
diff --git a/src/heap-inl.h b/src/heap-inl.h |
index 92ae8e54b568284b83ecf46328fcf88fc451b276..97c56df0c015a1078d1ac4ed9bd71daca11cdb51 100644 |
--- a/src/heap-inl.h |
+++ b/src/heap-inl.h |
@@ -495,10 +495,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); |
} |