diff --git a/src/objects.cc b/src/objects.cc index d32450d97a..65b1524b98 100644 --- a/src/objects.cc +++ b/src/objects.cc @@ -10507,7 +10507,7 @@ Handle DescriptorArray::Allocate(Isolate* isolate, int size = number_of_descriptors + slack; if (size == 0) return factory->empty_descriptor_array(); // Allocate the array of keys. - Handle result = factory->NewFixedArray(LengthFor(size)); + Handle result = factory->NewFixedArray(LengthFor(size), TENURED); result->set(kDescriptorLengthIndex, Smi::FromInt(number_of_descriptors)); result->set(kEnumCacheIndex, Smi::FromInt(0));