| Index: src/objects-inl.h
|
| diff --git a/src/objects-inl.h b/src/objects-inl.h
|
| index 8ff7866f0a08b325a02cc93e012736c2bbdc89df..44265e5f2e6d62871765404e60330020baf85408 100644
|
| --- a/src/objects-inl.h
|
| +++ b/src/objects-inl.h
|
| @@ -3244,7 +3244,7 @@ DescriptorArray::WhitenessWitness::~WhitenessWitness() {
|
|
|
|
|
| int HashTableBase::ComputeCapacity(int at_least_space_for) {
|
| - const int kMinCapacity = 32;
|
| + const int kMinCapacity = 4;
|
| int capacity = base::bits::RoundUpToPowerOfTwo32(at_least_space_for * 2);
|
| if (capacity < kMinCapacity) {
|
| capacity = kMinCapacity; // Guarantee min capacity.
|
|
|