| Index: runtime/vm/object_store.cc
|
| diff --git a/runtime/vm/object_store.cc b/runtime/vm/object_store.cc
|
| index 25469daa5b969fb6c5b3da8e74a12311f7fe2e1d..8c32a4a5abee466c3a99de2739a09296be778477 100644
|
| --- a/runtime/vm/object_store.cc
|
| +++ b/runtime/vm/object_store.cc
|
| @@ -88,7 +88,10 @@ ObjectStore::ObjectStore()
|
| empty_uint32_array_(TypedData::null()),
|
| handle_message_function_(Function::null()),
|
| library_load_error_table_(Array::null()),
|
| - compile_time_constants_(Array::null()) {
|
| + compile_time_constants_(Array::null()),
|
| + megamorphic_cache_table_(GrowableObjectArray::null()),
|
| + megamorphic_miss_code_(Code::null()),
|
| + megamorphic_miss_function_(Function::null()) {
|
| for (RawObject** current = from(); current <= to(); current++) {
|
| ASSERT(*current == Object::null());
|
| }
|
|
|