| Index: src/heap.cc
|
| diff --git a/src/heap.cc b/src/heap.cc
|
| index bda2b7065dffa6a7d9038e53c3fc844e544801f5..4b9f3fe5066ae510425dc843faa9a3951e3cb700 100644
|
| --- a/src/heap.cc
|
| +++ b/src/heap.cc
|
| @@ -2441,18 +2441,18 @@ bool Heap::CreateInitialObjects() {
|
|
|
| // Allocate the code_stubs dictionary. The initial size is set to avoid
|
| // expanding the dictionary during bootstrapping.
|
| - { MaybeObject* maybe_obj = NumberDictionary::Allocate(128);
|
| + { MaybeObject* maybe_obj = NotSeededNumberDictionary::Allocate(128);
|
| if (!maybe_obj->ToObject(&obj)) return false;
|
| }
|
| - set_code_stubs(NumberDictionary::cast(obj));
|
| + set_code_stubs(NotSeededNumberDictionary::cast(obj));
|
|
|
|
|
| // Allocate the non_monomorphic_cache used in stub-cache.cc. The initial size
|
| // is set to avoid expanding the dictionary during bootstrapping.
|
| - { MaybeObject* maybe_obj = NumberDictionary::Allocate(64);
|
| + { MaybeObject* maybe_obj = NotSeededNumberDictionary::Allocate(64);
|
| if (!maybe_obj->ToObject(&obj)) return false;
|
| }
|
| - set_non_monomorphic_cache(NumberDictionary::cast(obj));
|
| + set_non_monomorphic_cache(NotSeededNumberDictionary::cast(obj));
|
|
|
| { MaybeObject* maybe_obj = AllocatePolymorphicCodeCache();
|
| if (!maybe_obj->ToObject(&obj)) return false;
|
|
|